Skip to content

Commit

Permalink
Interval check for re-defined microhaps (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
standage committed Feb 28, 2023
1 parent 7ad401e commit e9d5f63
Show file tree
Hide file tree
Showing 31 changed files with 7,431 additions and 186,369 deletions.
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

### 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)

0 comments on commit e9d5f63

Please sign in to comment.