File: manual_dependencies_flowchart2.dot

package info (click to toggle)
python-ruffus 2.6.3%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 20,828 kB
  • ctags: 2,843
  • sloc: python: 15,745; makefile: 180; sh: 14
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];
}
}