### Flowchart of week44 #### digraph Week44 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step8 [ label = "Some questions", shape=block, color=red]; step7 [ label = "Technical Characteristics\n of DICOM dataset", shape=block]; step6 [ label = "Python and Modules\n in 3DSlicer", shape=block]; step5 [ label = "Folder\n progress_lucas", shape=block]; step4 [ label = "File\n explanation.md", shape=block]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week43", shape=block]; step2 [ label = "Week44", shape=oval, color=blue]; step3 [ label = "Week45\n (08.11)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4 [dir=back]; step2 -> step5 [dir=back]; step2 -> step6 [dir=back]; step2 -> step7 [dir=back]; step2 -> step8 [dir=back]; }