moducomp 0.6.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.
moducomp/__init__.py ADDED
@@ -0,0 +1,27 @@
1
+ """
2
+ moducomp: Metabolic module completeness of genomes and metabolic complementarity in microbiomes
3
+
4
+ This module provides a comprehensive bioinformatics pipeline for analyzing metabolic
5
+ module completeness in microbial genomes and identifying complementarity patterns
6
+ in microbial communities.
7
+
8
+ Key Features:
9
+ - Protein annotation using eggNOG-mapper to obtain KO (KEGG Orthology) terms
10
+ - Mapping of KO terms to KEGG metabolic modules using KPCT
11
+ - Parallel processing support for improved performance
12
+ - Module completeness analysis for individual genomes
13
+ - Complementarity analysis for N-member genome combinations
14
+ - Protein-level tracking for module completion
15
+
16
+ Author: Juan C. Villada - US DOE Joint Genome Institute - Lawrence Berkeley National Lab
17
+ License: See LICENSE.txt
18
+ Version: See pyproject.toml for current version
19
+ """
20
+
21
+ __version__ = "0.6.0"
22
+ __author__ = "Juan C. Villada"
23
+ __email__ = "jvillada@lbl.gov"
24
+
25
+ from .cli import app
26
+
27
+ __all__ = ["app"]