-
Notifications
You must be signed in to change notification settings - Fork 1
/
rule_dag.dot
69 lines (69 loc) · 2.64 KB
/
rule_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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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 = "produce_dysgu", color = "0.56 0.6 0.85", style="rounded"];
1[label = "dysgu_sort_index", color = "0.34 0.6 0.85", style="rounded"];
2[label = "dysgu", color = "0.57 0.6 0.85", style="rounded"];
3[label = "doppelmark_dups", color = "0.43 0.6 0.85", style="rounded"];
4[label = "bwa_mem2_sort", color = "0.60 0.6 0.85", style="rounded"];
5[label = "prep_results_dirs", color = "0.16 0.6 0.85", style="rounded"];
6[label = "workflow_staging", color = "0.58 0.6 0.85", style="rounded"];
7[label = "stage_supporting_data", color = "0.37 0.6 0.85", style="rounded"];
8[label = "pre_prep_raw_fq", color = "0.41 0.6 0.85", style="rounded"];
9[label = "sentieon_bwa_sort", color = "0.04 0.6 0.85", style="rounded"];
10[label = "strobe_align_sort", color = "0.51 0.6 0.85", style="rounded"];
11[label = "produce_manta", color = "0.22 0.6 0.85", style="rounded"];
12[label = "manta_sort_and_index", color = "0.25 0.6 0.85", style="rounded"];
13[label = "manta", color = "0.18 0.6 0.85", style="rounded"];
14[label = "produce_tiddit", color = "0.25 0.6 0.85", style="rounded"];
15[label = "tiddit_sort_index", color = "0.05 0.6 0.85", style="rounded"];
16[label = "tiddit", color = "0.11 0.6 0.85", style="rounded"];
17[label = "produce_snv_concordances", color = "0.38 0.6 0.85", style="rounded"];
18[label = "prep_for_concordance_check", color = "0.34 0.6 0.85", style="rounded"];
19[label = "deep_concat_index_chunks", color = "0.55 0.6 0.85", style="rounded"];
20[label = "deep_concat_fofn", color = "0.30 0.6 0.85", style="rounded"];
21[label = "dv_sort_index_chunk_vcf", color = "0.14 0.6 0.85", style="rounded"];
22[label = "deepvariant", color = "0.65 0.6 0.85", style="rounded"];
23[label = "prep_deep_chunkdirs", color = "0.52 0.6 0.85", style="rounded"];
24[label = "sentD_concat_index_chunks", color = "0.19 0.6 0.85", style="rounded"];
25[label = "sentD_concat_fofn", color = "0.01 0.6 0.85", style="rounded"];
26[label = "sentD_sort_index_chunk_vcf", color = "0.05 0.6 0.85", style="rounded"];
27[label = "sent_DNAscope", color = "0.17 0.6 0.85", style="rounded"];
28[label = "prep_sentD_chunkdirs", color = "0.36 0.6 0.85", style="rounded"];
1 -> 0
2 -> 1
3 -> 2
9 -> 3
10 -> 3
4 -> 3
8 -> 4
5 -> 4
6 -> 5
7 -> 6
8 -> 9
5 -> 9
8 -> 10
5 -> 10
12 -> 11
13 -> 12
3 -> 13
15 -> 14
16 -> 15
3 -> 16
18 -> 17
19 -> 18
24 -> 18
20 -> 19
21 -> 20
22 -> 21
3 -> 22
23 -> 22
3 -> 23
25 -> 24
26 -> 25
27 -> 26
3 -> 27
28 -> 27
3 -> 28
}