-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocfig_1.dot
52 lines (25 loc) · 1.19 KB
/
procfig_1.dot
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
digraph workflow {
"Genome" [shape=hexagon];
"ClinVar" [shape=hexagon];
"GENCODE" [shape=hexagon];
"Bismap" [shape=hexagon];
"Intersect_1" [shape=diamond, color=gray85, style=filled, label="Intersect"];
"ClinVar" -> "Intersect_1";
"GENCODE" -> "Intersect_1";
"Intersect_1" -> "ClinVar Genes";
"Intersect_3" [shape=diamond, color=gray85, style=filled, label="Find low-mappability regions"];
"Bismap" -> "Intersect_3";
"Genome" -> "Intersect_3";
"Intersect_3" -> "Low-mappability Regions";
"Intersect_2" [shape=diamond, color=gray85, style=filled, label="Intersect with\nlow-mappability regions"];
"ClinVar Genes" -> "Intersect_2";
"Low-mappability Regions" -> "Intersect_2";
"Intersect_2" -> "Low-mappability ClinVar Genes";
"Intersect_2" -> "Low-mappability Regions \nin ClinVar Genes";
"Low-mappability Regions" -> "BAM_PROC_1" [label="To Methylation Calling", style=dotted];
"Low-mappability ClinVar Genes" -> "BAM_PROC_2" [label="To Methylation Calling", style=dotted];
"Low-mappability Regions \nin ClinVar Genes" -> "BAM_PROC_3" [label="To Methylation Calling", style=dotted];
"BAM_PROC_1" [style=invis];
"BAM_PROC_2" [style=invis];
"BAM_PROC_3" [style=invis];
}