scCoord 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.
- sccoord-0.1.0/PKG-INFO +61 -0
- sccoord-0.1.0/README.md +21 -0
- sccoord-0.1.0/scCoord/MAIVC.py +1265 -0
- sccoord-0.1.0/scCoord/__init__.py +9 -0
- sccoord-0.1.0/scCoord/atac/__init__.py +1 -0
- sccoord-0.1.0/scCoord/atac/utils.py +151 -0
- sccoord-0.1.0/scCoord/dist/__init__.py +1 -0
- sccoord-0.1.0/scCoord/dist/negbinomial.py +415 -0
- sccoord-0.1.0/scCoord/graph/__init__.py +1 -0
- sccoord-0.1.0/scCoord/graph/graph_utils.py +1164 -0
- sccoord-0.1.0/scCoord/utils/__init__.py +20 -0
- sccoord-0.1.0/scCoord/utils/custom_mlp.py +352 -0
- sccoord-0.1.0/scCoord/utils/label.py +215 -0
- sccoord-0.1.0/scCoord/utils/queue.py +50 -0
- sccoord-0.1.0/scCoord/utils/utils.py +308 -0
- sccoord-0.1.0/scCoord.egg-info/PKG-INFO +61 -0
- sccoord-0.1.0/scCoord.egg-info/SOURCES.txt +20 -0
- sccoord-0.1.0/scCoord.egg-info/dependency_links.txt +1 -0
- sccoord-0.1.0/scCoord.egg-info/requires.txt +18 -0
- sccoord-0.1.0/scCoord.egg-info/top_level.txt +1 -0
- sccoord-0.1.0/setup.cfg +4 -0
- sccoord-0.1.0/setup.py +25 -0
sccoord-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scCoord
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Single Cell Coordinate
|
|
5
|
+
Home-page: https://github.com/ZengFLab/scCoord
|
|
6
|
+
Author: Feng Zeng
|
|
7
|
+
Author-email: zengfeng@xmu.edu.cn
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: dill==0.3.8
|
|
14
|
+
Requires-Dist: scanpy
|
|
15
|
+
Requires-Dist: pytorch-ignite
|
|
16
|
+
Requires-Dist: datatable
|
|
17
|
+
Requires-Dist: scipy
|
|
18
|
+
Requires-Dist: numpy
|
|
19
|
+
Requires-Dist: scikit-learn
|
|
20
|
+
Requires-Dist: pandas
|
|
21
|
+
Requires-Dist: pyro-ppl
|
|
22
|
+
Requires-Dist: jax[cuda12]
|
|
23
|
+
Requires-Dist: leidenalg
|
|
24
|
+
Requires-Dist: python-igraph
|
|
25
|
+
Requires-Dist: networkx
|
|
26
|
+
Requires-Dist: matplotlib
|
|
27
|
+
Requires-Dist: seaborn
|
|
28
|
+
Requires-Dist: fa2-modified
|
|
29
|
+
Requires-Dist: zuko
|
|
30
|
+
Requires-Dist: plotly
|
|
31
|
+
Dynamic: author
|
|
32
|
+
Dynamic: author-email
|
|
33
|
+
Dynamic: classifier
|
|
34
|
+
Dynamic: description
|
|
35
|
+
Dynamic: description-content-type
|
|
36
|
+
Dynamic: home-page
|
|
37
|
+
Dynamic: requires-dist
|
|
38
|
+
Dynamic: requires-python
|
|
39
|
+
Dynamic: summary
|
|
40
|
+
|
|
41
|
+
# MAIVC: Module-based Artificial Intelligence Virtual Cell
|
|
42
|
+
Learning atomic operations for virtual cell construction.
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
1. Create a virtual environment
|
|
46
|
+
```bash
|
|
47
|
+
conda create -n MAIVC python=3.10 scipy numpy pandas scikit-learn && conda activate MAIVC
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
2. Install [PyTorch](https://pytorch.org/get-started/locally/) following the official instruction.
|
|
51
|
+
```bash
|
|
52
|
+
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu126
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
3. Install MAIVC
|
|
56
|
+
```bash
|
|
57
|
+
pip3 install MAIVC
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
sccoord-0.1.0/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# MAIVC: Module-based Artificial Intelligence Virtual Cell
|
|
2
|
+
Learning atomic operations for virtual cell construction.
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
1. Create a virtual environment
|
|
6
|
+
```bash
|
|
7
|
+
conda create -n MAIVC python=3.10 scipy numpy pandas scikit-learn && conda activate MAIVC
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
2. Install [PyTorch](https://pytorch.org/get-started/locally/) following the official instruction.
|
|
11
|
+
```bash
|
|
12
|
+
pip3 install torch torchvision --index-url https://download.pytorch.org/whl/cu126
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
3. Install MAIVC
|
|
16
|
+
```bash
|
|
17
|
+
pip3 install MAIVC
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|