Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Interval check for re-defined microhaps #112

Merged
merged 5 commits into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions dbbuild/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ They can be installed using pip and/or conda.
- ucsc-liftover
- selenium
- geckodriver
- intervaltree
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New dependency for dbbuild.


### Databases

Expand Down
95 changes: 72 additions & 23 deletions dbbuild/build-summary.txt

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dbbuild/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

from lib import SourceIndex

index = SourceIndex("sources", "databases/dbSNP", "databases")
index = SourceIndex("sources", "databases/dbSNP", "databases", exclude=["Auton2015"])
index.interval_check()
index.update_marker_names()
index.markers.to_csv("marker.csv", index=False)
index.indels.to_csv("indels.csv", index=False)
index.frequencies.to_csv("frequency.csv", index=False, float_format="%.5f")
index.populations.to_csv("population.csv", index=False)
index.merges.to_csv("merged.csv", index=False)
print(index)