-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdag.dot
54 lines (54 loc) · 2.17 KB
/
dag.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
53
54
digraph snakemake_dag {
graph[bgcolor=white, margin=0];
node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2];
edge[penwidth=2, color=grey];
0[label = "all", color = "0.17 0.6 0.85", style="rounded,dashed"];
1[label = "haplotype_calling", color = "0.25 0.6 0.85", style="rounded,dashed"];
2[label = "apply_recalib", color = "0.50 0.6 0.85", style="rounded,dashed"];
3[label = "base_recalib", color = "0.42 0.6 0.85", style="rounded,dashed"];
4[label = "mark_dups", color = "0.58 0.6 0.85", style="rounded,dashed"];
5[label = "sort_bam", color = "0.08 0.6 0.85", style="rounded,dashed"];
6[label = "bwa_mem2\nsample: ces_94.sample_BR1133.lane_3", color = "0.33 0.6 0.85", style="rounded,dashed"];
7[label = "index_bam", color = "0.00 0.6 0.85", style="rounded,dashed"];
8[label = "haplotype_calling", color = "0.25 0.6 0.85", style="rounded,dashed"];
9[label = "apply_recalib", color = "0.50 0.6 0.85", style="rounded,dashed"];
10[label = "base_recalib", color = "0.42 0.6 0.85", style="rounded,dashed"];
11[label = "mark_dups", color = "0.58 0.6 0.85", style="rounded,dashed"];
12[label = "sort_bam", color = "0.08 0.6 0.85", style="rounded,dashed"];
13[label = "bwa_mem2\nsample: ces_94.sample_BR1131.lane_3", color = "0.33 0.6 0.85", style="rounded,dashed"];
14[label = "index_bam", color = "0.00 0.6 0.85", style="rounded,dashed"];
15[label = "haplotype_calling", color = "0.25 0.6 0.85", style="rounded,dashed"];
16[label = "apply_recalib", color = "0.50 0.6 0.85", style="rounded,dashed"];
17[label = "base_recalib", color = "0.42 0.6 0.85", style="rounded,dashed"];
18[label = "mark_dups", color = "0.58 0.6 0.85", style="rounded,dashed"];
19[label = "sort_bam", color = "0.08 0.6 0.85", style="rounded,dashed"];
20[label = "bwa_mem2\nsample: ces_94.sample_BR1132.lane_3", color = "0.33 0.6 0.85", style="rounded,dashed"];
21[label = "index_bam", color = "0.00 0.6 0.85", style="rounded,dashed"];
1 -> 0
8 -> 0
15 -> 0
2 -> 1
3 -> 2
4 -> 2
4 -> 3
7 -> 3
5 -> 4
6 -> 5
4 -> 7
9 -> 8
10 -> 9
11 -> 9
11 -> 10
14 -> 10
12 -> 11
13 -> 12
11 -> 14
16 -> 15
17 -> 16
18 -> 16
18 -> 17
21 -> 17
19 -> 18
20 -> 19
18 -> 21
}