-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from biocore/improved_position_plots
Allow region slicing
- Loading branch information
Showing
16 changed files
with
2,200 additions
and
953 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
tqdm | ||
scipy | ||
pyarrow<16.0.0 | ||
polars-u64-idx>=1.21.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
"""micov: microbiome coverage.""" | ||
|
||
from . import _version | ||
__version__ = _version.get_versions()['version'] | ||
|
||
__version__ = _version.get_versions()["version"] | ||
# note: currently for use with duckdb. we cannot easily enforce threads for polars | ||
# as a specific environment variable must be set prior to the first import. it's | ||
# doable but will need some engineeering to do it correctly.'And, polars does not | ||
# currently have a way to limit memory use. | ||
THREADS = 1 | ||
MEMORY = 8 # gb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.