-
Notifications
You must be signed in to change notification settings - Fork 741
Expand file tree
/
Copy path__init__.py
More file actions
110 lines (107 loc) · 2.45 KB
/
__init__.py
File metadata and controls
110 lines (107 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
"""Plotting functions and classes."""
from __future__ import annotations
from . import palettes
from ._anndata import (
clustermap,
correlation_matrix,
dendrogram,
heatmap,
ranking,
scatter,
tracksplot,
violin,
)
from ._cluster_tree import cluster_decision_tree
from ._dotplot import DotPlot, dotplot
from ._matrixplot import MatrixPlot, matrixplot
from ._preprocessing import filter_genes_dispersion, highly_variable_genes
from ._qc import highest_expr_genes
from ._rcmod import set_rcParams_defaults, set_rcParams_scanpy
from ._scrublet import scrublet_score_distribution
from ._stacked_violin import StackedViolin, stacked_violin
from ._tools import (
dpt_groups_pseudotime,
dpt_timeseries,
embedding_density,
pca_loadings,
pca_overview,
pca_scatter,
pca_variance_ratio,
rank_genes_groups,
rank_genes_groups_dotplot,
rank_genes_groups_heatmap,
rank_genes_groups_matrixplot,
rank_genes_groups_stacked_violin,
rank_genes_groups_tracksplot,
rank_genes_groups_violin,
sim,
)
from ._tools.paga import (
paga,
paga_adjacency, # noqa: F401
paga_compare,
paga_path,
)
from ._tools.scatterplots import (
diffmap,
draw_graph,
embedding,
pca,
spatial,
tsne,
umap,
)
from ._utils import matrix, timeseries, timeseries_as_heatmap, timeseries_subplot
__all__ = [
"DotPlot",
"MatrixPlot",
"StackedViolin",
"cluster_decision_tree",
"clustermap",
"correlation_matrix",
"dendrogram",
"diffmap",
"dotplot",
"dpt_groups_pseudotime",
"dpt_timeseries",
"draw_graph",
"embedding",
"embedding_density",
"filter_genes_dispersion",
"heatmap",
"highest_expr_genes",
"highly_variable_genes",
"matrix",
"matrixplot",
"paga",
"paga_compare",
"paga_path",
"palettes",
"pca",
"pca_loadings",
"pca_overview",
"pca_scatter",
"pca_variance_ratio",
"rank_genes_groups",
"rank_genes_groups_dotplot",
"rank_genes_groups_heatmap",
"rank_genes_groups_matrixplot",
"rank_genes_groups_stacked_violin",
"rank_genes_groups_tracksplot",
"rank_genes_groups_violin",
"ranking",
"scatter",
"scrublet_score_distribution",
"set_rcParams_defaults",
"set_rcParams_scanpy",
"sim",
"spatial",
"stacked_violin",
"timeseries",
"timeseries_as_heatmap",
"timeseries_subplot",
"tracksplot",
"tsne",
"umap",
"violin",
]