py-CellCall 0.1.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.
- cellcall/__init__.py +28 -0
- cellcall/connect_profile.py +694 -0
- cellcall/correlation.py +93 -0
- cellcall/distance.py +72 -0
- cellcall/extdata/KEGG_SYMBOL_ID.txt +336 -0
- cellcall/extdata/example_Data.Rdata +0 -0
- cellcall/extdata/homo/exon_sum.Rdata +0 -0
- cellcall/extdata/homo/transcriptmaxLength.Rdata +0 -0
- cellcall/extdata/mmus/exon_sum.Rdata +0 -0
- cellcall/extdata/mmus/transcriptmaxLength.Rdata +0 -0
- cellcall/extdata/new_ligand_receptor_TFs.txt +19145 -0
- cellcall/extdata/new_ligand_receptor_TFs_extended.txt +3976 -0
- cellcall/extdata/new_ligand_receptor_TFs_homology.txt +12070 -0
- cellcall/extdata/new_ligand_receptor_TFs_homology_extended.txt +3458 -0
- cellcall/extdata/r_regulons_cache.csv +379 -0
- cellcall/extdata/tf_target.txt +591016 -0
- cellcall/extdata/tf_target_homology.txt +620618 -0
- cellcall/fgsea.py +207 -0
- cellcall/fgsea_c.py +85 -0
- cellcall/fgsea_numba.py +205 -0
- cellcall/foldchange.py +55 -0
- cellcall/gsea.py +289 -0
- cellcall/gsea_r.py +135 -0
- cellcall/io.py +75 -0
- cellcall/lr2tf.py +156 -0
- cellcall/normalize.py +106 -0
- cellcall/object.py +34 -0
- cellcall/pathway.py +197 -0
- cellcall/rng_compat.py +95 -0
- cellcall/src/fgsea_exact.c +212 -0
- cellcall/src/fgsea_exact.so +0 -0
- cellcall/triple_score.py +43 -0
- cellcall/visualization.py +175 -0
- py_cellcall-0.1.0.dist-info/METADATA +145 -0
- py_cellcall-0.1.0.dist-info/RECORD +37 -0
- py_cellcall-0.1.0.dist-info/WHEEL +4 -0
- py_cellcall-0.1.0.dist-info/licenses/LICENSE +16 -0
cellcall/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""
|
|
2
|
+
pycellcall - Python port of cellcall: inference of intercellular networks
|
|
3
|
+
from single-cell transcriptomics.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from .object import CellInter
|
|
7
|
+
from .normalize import counts2normalized_10x, counts2normalized_smartseq2
|
|
8
|
+
from .connect_profile import connect_profile, trans_commu_profile
|
|
9
|
+
from .lr2tf import lr2tf
|
|
10
|
+
from .pathway import get_hyper_pathway
|
|
11
|
+
from .triple_score import trans2triple_score
|
|
12
|
+
from .visualization import plot_bubble, view_pheatmap, get_for_bubble
|
|
13
|
+
|
|
14
|
+
__version__ = "0.1.0"
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"CellInter",
|
|
18
|
+
"counts2normalized_10x",
|
|
19
|
+
"counts2normalized_smartseq2",
|
|
20
|
+
"connect_profile",
|
|
21
|
+
"trans_commu_profile",
|
|
22
|
+
"lr2tf",
|
|
23
|
+
"get_hyper_pathway",
|
|
24
|
+
"trans2triple_score",
|
|
25
|
+
"plot_bubble",
|
|
26
|
+
"view_pheatmap",
|
|
27
|
+
"get_for_bubble",
|
|
28
|
+
]
|