-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathworkflow_with_functions
More file actions
executable file
·93 lines (93 loc) · 1.93 KB
/
workflow_with_functions
File metadata and controls
executable file
·93 lines (93 loc) · 1.93 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
// Workflow
digraph {
A [label="Filter Genes (mod1)
FilterGenesScanpyOrder
FilterGenesPlaceHolder
FilterGenesPercentile"]
B [label="Filter Genes (mod2)
FilterGenesScanpyOrder
FilterGenesPlaceHolder
FilterGenesPercentile"]
C [label="Align Mods"]
D [label="Normalize (mod1)
NormalizePlaceHolder
tfidfTransform"]
E [label="Normalize (mod2)
NormalizePlaceHolder
tfidfTransform"]
F [label="Normalize with Options (mod1)
NormalizePlaceHolder
ColumnSumNormalize
ScTransform
Log1P
NormalizeTotal
NormalizeTotalLog1P"]
G [label="Normalize with Options (mod2)
NormalizePlaceHolder
ColumnSumNormalize
ScTransform
Log1P
NormalizeTotal
NormalizeTotalLog1P"]
H [label="Filter Genes by Variability (mod1)
HighlyVariableGenesLogarithmizedByMeanAndDisp
HighlyVariableGenesRawCount
FilterGenesNumberPlaceHolder
HighlyVariableGenesLogarithmizedByTopGenes
FilterGenesTopK
FilterGenesRegression"]
I [label="Filter Genes by Variability (mod2)
HighlyVariableGenesLogarithmizedByMeanAndDisp
HighlyVariableGenesRawCount
FilterGenesNumberPlaceHolder
HighlyVariableGenesLogarithmizedByTopGenes
FilterGenesTopK
FilterGenesRegression"]
J [label="Filter Cells (mod1)
FilterCellsScanpyOrder
FilterCellsPlaceHolder"]
K [label="Filter Cells (mod2)
FilterCellsScanpyOrder
FilterCellsPlaceHolder"]
L [label="Filter Common Cells (mod1, mod2)"]
M [label="Filter Cells (meta1)
FilterCellsScanpyOrder
FilterCellsPlaceHolder"]
N [label="Filter Cells (meta2)
FilterCellsScanpyOrder
FilterCellsPlaceHolder"]
O [label="Filter Common Cells (meta1, meta2)"]
P [label="Cell Feature Embedding (mod1)
CellPCA
CellSVD
GaussRandProjFeature
WeightedFeaturePCA
WeightedFeatureSVD
FeatureCellPlaceHolder"]
Q [label="Cell Feature Embedding (mod2)
CellPCA
CellSVD
GaussRandProjFeature
WeightedFeaturePCA
WeightedFeatureSVD
FeatureCellPlaceHolder"]
R [label="Set Config"]
A -> B
B -> C
C -> D
B -> E
D -> F
E -> G
F -> H
G -> I
H -> J
I -> K
J -> L
K -> L
L -> M
M -> N
N -> O
O -> P
P -> Q
Q -> R
}