### Flowchart of week45 #### digraph Week45 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step6 [ label = "Just curiosity", shape=block, color=red]; step5 [ label = "Output data", shape=block]; step4 [ label = "DICOM set file", shape=block]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week44", shape=block]; step2 [ label = "Week45", shape=oval, color=blue]; step3 [ label = "Week46\n (15.11)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4 [dir=back]; step2 -> step5 [dir=back]; step2 -> step6 [dir=back]; }