File: manual_dependencies_flowchart2.dot

package info (click to toggle)
python-ruffus 2.8.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,468 kB
  • sloc: python: 17,613; makefile: 213; sh: 18
file content (20 lines) | stat: -rw-r--r-- 652 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
digraph tree
{
size="8,11!";
splines=true;
fontsize=30;
ranksep = 0.1;
subgraph clustertasks
{
label = "Pipeline:";
edge[minlen=2];
node[fontsize=20];
t0[style=filled, color=olivedrab, label="task1", shape=octagon, fillcolor=olivedrab, fontcolor=black];
t1[style=filled, color=olivedrab, label="task2", shape=octagon, fillcolor=olivedrab, fontcolor=black];
t0 -> t1[color=gray, arrowtype=normal];
t2[style=filled, color=olivedrab, label="task3", shape=octagon, fillcolor=olivedrab, fontcolor=black];
t1 -> t2[color=gray, arrowtype=normal];
t3[color=gray, fontcolor=gray, shape=tripleoctagon, label="task4"];
t2 -> t3[color=gray, arrowtype=normal];
}
}