py-gbcms 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
gbcms/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """
2
+ GetBaseCounts - Calculate base counts in multiple BAM files for variants
3
+
4
+ A high-performance Python reimplementation of GetBaseCountsMultiSample.
5
+ """
6
+
7
+ __version__ = "2.0.0"
8
+ __author__ = "MSK-ACCESS Team"
9
+
10
+ from .config import Config, CountType
11
+ from .variant import VariantEntry
12
+
13
+ __all__ = ["Config", "CountType", "VariantEntry", "__version__"]