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 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
+ ]