Skip to content

Commit 9933f6c

Browse files
committed
Chore: Adding new rulegraph and dag for leafworker pipeline.
1 parent ba4ad5f commit 9933f6c

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

examples/leafworker_dag.svg

Lines changed: 1 addition & 0 deletions
Loading

examples/leafworker_rulegraph.dot

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
digraph snakemake_dag {
2+
graph[bgcolor=white, margin=0];
3+
node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2];
4+
edge[penwidth=2, color=grey];
5+
0[label = "all", color = "0.33 0.6 0.85", style="rounded"];
6+
1[label = "leafcutter_bam2bed", color = "0.59 0.6 0.85", style="rounded"];
7+
2[label = "leafcutter_bed2junc", color = "0.19 0.6 0.85", style="rounded"];
8+
3[label = "leafcutter_gatherjuncs", color = "0.26 0.6 0.85", style="rounded"];
9+
4[label = "leafcutter_clusterjuncs", color = "0.37 0.6 0.85", style="rounded"];
10+
5[label = "leafcutter_clustergenes", color = "0.63 0.6 0.85", style="rounded"];
11+
6[label = "leafcutter_mkgroups", color = "0.07 0.6 0.85", style="rounded"];
12+
7[label = "leafcutter_gtf2exons", color = "0.30 0.6 0.85", style="rounded"];
13+
8[label = "leafcutter_diffsplicing", color = "0.44 0.6 0.85", style="rounded"];
14+
9[label = "leafcutter_prepleafviz", color = "0.22 0.6 0.85", style="rounded"];
15+
10[label = "leafcutter_gtf2leafviz", color = "0.04 0.6 0.85", style="rounded"];
16+
11[label = "isoformswitchanalyzer_bam2fastq", color = "0.41 0.6 0.85", style="rounded"];
17+
12[label = "isoformswitchanalyzer_salmon_index", color = "0.11 0.6 0.85", style="rounded"];
18+
13[label = "isoformswitchanalyzer_salmon_quant", color = "0.48 0.6 0.85", style="rounded"];
19+
14[label = "isoformswitchanalyzer_salmon_matrix", color = "0.52 0.6 0.85", style="rounded"];
20+
15[label = "isoformswitchanalyzer_mkgroups", color = "0.00 0.6 0.85", style="rounded"];
21+
16[label = "isoformswitchanalyzer_diffswitching", color = "0.15 0.6 0.85", style="rounded"];
22+
17[label = "isoformswitchanalyzer_isoformfasta", color = "0.56 0.6 0.85", style="rounded"];
23+
15 -> 0
24+
6 -> 0
25+
12 -> 0
26+
16 -> 0
27+
2 -> 0
28+
9 -> 0
29+
3 -> 0
30+
7 -> 0
31+
13 -> 0
32+
4 -> 0
33+
11 -> 0
34+
8 -> 0
35+
14 -> 0
36+
17 -> 0
37+
1 -> 0
38+
5 -> 0
39+
1 -> 2
40+
2 -> 3
41+
3 -> 4
42+
4 -> 5
43+
4 -> 6
44+
7 -> 8
45+
4 -> 8
46+
6 -> 8
47+
10 -> 9
48+
6 -> 9
49+
7 -> 9
50+
4 -> 9
51+
8 -> 9
52+
12 -> 13
53+
11 -> 13
54+
13 -> 14
55+
13 -> 15
56+
15 -> 16
57+
7 -> 17
58+
16 -> 17
59+
}

0 commit comments

Comments
 (0)