metacoag 1.2.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.
- metacoag/__init__.py +10 -0
- metacoag/cli.py +1271 -0
- metacoag/metacoag_utils/__init__.py +10 -0
- metacoag/metacoag_utils/auxiliary/marker.hmm +105657 -0
- metacoag/metacoag_utils/bidirectionalmap.py +42 -0
- metacoag/metacoag_utils/feature_utils.py +235 -0
- metacoag/metacoag_utils/graph_utils.py +443 -0
- metacoag/metacoag_utils/label_prop_utils.py +513 -0
- metacoag/metacoag_utils/marker_gene_utils.py +261 -0
- metacoag/metacoag_utils/matching_utils.py +416 -0
- metacoag/metacoag_utils/support/combine_cov.py +71 -0
- metacoag/metacoag_utils/support/gfa2fasta.py +136 -0
- metacoag-1.2.0.dist-info/LICENSE +674 -0
- metacoag-1.2.0.dist-info/METADATA +210 -0
- metacoag-1.2.0.dist-info/RECORD +17 -0
- metacoag-1.2.0.dist-info/WHEEL +4 -0
- metacoag-1.2.0.dist-info/entry_points.txt +4 -0
metacoag/__init__.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""MetaCoAG: Binning Metagenomic Contigs via Composition, Coverage and Assembly Graphs
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
__author__ = "Vijini Mallawaarachchi and Yu Lin"
|
|
5
|
+
__copyright__ = "Copyright 2020, MetaCoAG Project"
|
|
6
|
+
__license__ = "GPL-3.0"
|
|
7
|
+
__version__ = "1.2.0"
|
|
8
|
+
__maintainer__ = "Vijini Mallawaarachchi"
|
|
9
|
+
__email__ = "vijini.mallawaarachchi@anu.edu.au"
|
|
10
|
+
__status__ = "Stable Release"
|