forked from YuLab-SMU/clusterProfiler-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clusterProfiler-diagram.R
205 lines (148 loc) · 3.17 KB
/
clusterProfiler-diagram.R
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
library("DiagrammeR")
grViz("digraph course {
rankdir = LR
node [shape = box, style=filled]
layout = dot
compound =true
#color = crimson
subgraph clusterA{
label = 'ChIPseeker'
style = dashed
rank = same
roi [label = 'Region of interest']
gene2 [label = 'Gene in proximity']
}
subgraph clusterB{
rankdir = LR
label = 'Over Representation Analysis'
style = dashed
rank = same
subgraph cluster0 {
label = 'clusterProfiler'
enrichGO
enrichKEGG
enrichMKEGG
enricher [label = 'enricher\nfor MSigDb, wikiPathway\nand many others']
}
subgraph cluster1 {
label = 'DOSE'
enrichDO
enrichNCG
enrichDGN
}
subgraph cluster2 {
label = 'ReactomePA'
enrichPathway
}
subgraph cluster3 {
label = 'meshes'
enrichMeSH
}
}
subgraph clusterC{
label = 'Gene Set Enrichment Analysis'
style = dashed
rank = same
subgraph cluster0 {
label = 'clusterProfiler'
gseGO
gseKEGG
gseMKEGG
GSEA [label = 'GSEA\nfor MSigDb, wikiPathway\nand many others']
}
subgraph cluster1 {
label = 'DOSE'
gseDO
gseNCG
gseDGN
}
subgraph cluster2 {
label = 'ReactomePA'
gsePathway
}
subgraph cluster3 {
label = 'meshes'
gseMeSH
}
}
subgraph clusterD{
label = 'Visualization using enrichplot'
style = dashed
rank = same
subgraph cluster1 {
label = 'ORA only'
barplot
goplot
}
subgraph cluster2 {
label = 'ORA & GSEA'
dotplot
upsetplot
heatplot
cnetplot
emapplot
}
subgraph cluster3 {
label = 'GSEA only'
gseaplot
gseaplot2
gsearank
ridgeplot
}
}
subgraph clusterE{
label = 'Remove redundant terms'
style = dashed
rank = same
simplify [label = 'simplify for GO only\nby GOSemSim']
}
subgraph clusterF{
label = 'Compare different conditions'
style = dashed
rank = same
comparecluster [label = 'compareCluster\nby clusterProfiler']
}
rnaseq [label = 'RNA-seq']
gene [label = 'Gene of interest\ne.g. from pull-down']
genelist [label='Ranked gene list']
de [label = 'Differential expressed gene']
roi->gene2
#ora [label = 'Over Representation Analysis']
#gsea [label = 'Gene Set Enrichment Analysis']
microarray -> de
rnaseq -> de
microarray -> genelist #gseKEGG[lhead=clusterC]
rnaseq -> genelist
de -> enrichKEGG[lhead=clusterB]
gene -> enrichKEGG[lhead=clusterB]
gene2 -> enrichKEGG[lhead=clusterB]
enrichKEGG -> enrichNCG [style = invis]
enrichPathway -> enrichMeSH [style = invis]
gseKEGG -> gseNCG [style = invis]
gsePathway -> gseMeSH [style = invis]
genelist -> gseMKEGG [lhead=clusterC]
others [label = 'Other sources']
others -> genelist
enrichDGN -> barplot [ltail=clusterB]
enrichDGN -> dotplot [ltail=clusterB]
enrichDGN -> upsetplot [ltail=clusterB]
enrichDGN -> heatplot [ltail=clusterB]
enrichDGN -> cnetplot [ltail=clusterB]
enrichDGN -> emapplot [ltail=clusterB]
enrichGO -> goplot
gseDGN -> ridgeplot [ltail=clusterC]
gseDGN -> dotplot [ltail=clusterC]
gseDGN -> upsetplot [ltail=clusterC]
gseDGN -> heatplot [ltail=clusterC]
gseDGN -> cnetplot [ltail=clusterC]
gseDGN -> emapplot [ltail=clusterC]
gseDGN -> gseaplot [ltail=clusterC]
gseDGN -> gseaplot2 [ltail=clusterC]
gseDGN -> gsearank [ltail=clusterC]
enrichGO -> simplify
gseGO -> simplify
enrichMeSH -> comparecluster[ltail=clusterB]
}") -> x
x
#yyplot::gv2file(x, file = 'clusterProfiler.pdf')
yyplot::gv2file(x, file = 'figures/clusterProfiler-diagram.png' )