AlphaMicrobiome 0.1.0__tar.gz

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.
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: AlphaMicrobiome
3
+ Version: 0.1.0
4
+ Summary: Microbiome analysis
5
+ Author: Zhao Yu
6
+ Requires-Python: >=3.12
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: ipykernel
9
+ Requires-Dist: loguru
10
+ Requires-Dist: tqdm
11
+ Requires-Dist: numpy
12
+ Requires-Dist: pandas
13
+ Requires-Dist: scipy
14
+ Requires-Dist: statsmodels
15
+ Requires-Dist: pingouin
16
+ Requires-Dist: matplotlib
17
+ Requires-Dist: seaborn
18
+ Requires-Dist: statannotations
19
+ Requires-Dist: scikit-learn
20
+ Requires-Dist: shap
21
+ Requires-Dist: torch
22
+ Requires-Dist: torchvision
23
+ Requires-Dist: scikit-bio
24
+ Requires-Dist: networkx
25
+ Requires-Dist: reflex
@@ -0,0 +1,42 @@
1
+ [project]
2
+ name = "AlphaMicrobiome"
3
+ version = "0.1.0"
4
+ description = "Microbiome analysis"
5
+ authors = [
6
+ {name='Zhao Yu'}
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">=3.12"
10
+ dependencies = [
11
+ # kernel for Jupyter notebooks
12
+ 'ipykernel',
13
+ 'loguru',
14
+ 'tqdm',
15
+ # Scientific computing and visualization
16
+ 'numpy',
17
+ 'pandas',
18
+ 'scipy',
19
+ 'statsmodels',
20
+ 'pingouin',
21
+ 'matplotlib',
22
+ 'seaborn',
23
+ 'statannotations',
24
+ # ML and DL
25
+ 'scikit-learn',
26
+ 'shap',
27
+ 'torch',
28
+ 'torchvision',
29
+ # Microbiome analysis
30
+ 'scikit-bio',
31
+ # 'lefse',
32
+ 'networkx',
33
+ # Web
34
+ 'reflex',
35
+ ]
36
+
37
+ [build-system]
38
+ requires = ["setuptools", "wheel"]
39
+ build-backend = "setuptools.build_meta"
40
+
41
+ [tool.setuptools.packages.find]
42
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: AlphaMicrobiome
3
+ Version: 0.1.0
4
+ Summary: Microbiome analysis
5
+ Author: Zhao Yu
6
+ Requires-Python: >=3.12
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: ipykernel
9
+ Requires-Dist: loguru
10
+ Requires-Dist: tqdm
11
+ Requires-Dist: numpy
12
+ Requires-Dist: pandas
13
+ Requires-Dist: scipy
14
+ Requires-Dist: statsmodels
15
+ Requires-Dist: pingouin
16
+ Requires-Dist: matplotlib
17
+ Requires-Dist: seaborn
18
+ Requires-Dist: statannotations
19
+ Requires-Dist: scikit-learn
20
+ Requires-Dist: shap
21
+ Requires-Dist: torch
22
+ Requires-Dist: torchvision
23
+ Requires-Dist: scikit-bio
24
+ Requires-Dist: networkx
25
+ Requires-Dist: reflex
@@ -0,0 +1,19 @@
1
+ pyproject.toml
2
+ src/AlphaMicrobiome.egg-info/PKG-INFO
3
+ src/AlphaMicrobiome.egg-info/SOURCES.txt
4
+ src/AlphaMicrobiome.egg-info/dependency_links.txt
5
+ src/AlphaMicrobiome.egg-info/requires.txt
6
+ src/AlphaMicrobiome.egg-info/top_level.txt
7
+ src/microbiome/__init__.py
8
+ src/microbiome/amplicon.py
9
+ src/microbiome/betaNTI.py
10
+ src/microbiome/colors.py
11
+ src/microbiome/diversity.py
12
+ src/microbiome/journal.py
13
+ src/microbiome/metacyc_utils.py
14
+ src/microbiome/network.py
15
+ src/microbiome/plot.py
16
+ src/microbiome/skbio_utils.py
17
+ src/microbiome/stats.py
18
+ src/microbiome/usearch.py
19
+ src/microbiome/vae.py
@@ -0,0 +1,18 @@
1
+ ipykernel
2
+ loguru
3
+ tqdm
4
+ numpy
5
+ pandas
6
+ scipy
7
+ statsmodels
8
+ pingouin
9
+ matplotlib
10
+ seaborn
11
+ statannotations
12
+ scikit-learn
13
+ shap
14
+ torch
15
+ torchvision
16
+ scikit-bio
17
+ networkx
18
+ reflex
@@ -0,0 +1,24 @@
1
+
2
+
3
+ from . import (
4
+ amplicon,
5
+ diversity,
6
+ network,
7
+ vae,
8
+ stats,
9
+ colors,
10
+ plot,
11
+ )
12
+
13
+ __version__ = "0.1.0"
14
+ __author__ = "ZhaoYu"
15
+ __all__ = [
16
+ 'amplicon',
17
+ 'diversity',
18
+ 'network',
19
+ 'vae',
20
+ 'stats',
21
+ 'betaNTI',
22
+ 'colors',
23
+ 'plot',
24
+ ]