flowchart LR
d11([Registry data.xlsx])
d21([Registry data.csv])
d12([database_1])
d22([database_n])
tn1[R]
tn2[SQL]
p1[art.etl]
s21[/analyse_report.R/]
s31[/vis_v1.R/]
s22[/analyse_conf.R/]
s32[/vis_v2.R/]
s23[/analyse_adhoc.R/]
s33[/vis_v3.R/]
t11[Excel]
t12[Word]
t21[Excel]
t22[Power Point]
t31[Excel]
t32[Word]
o11[annual_report.docx]
o21[supplementary.xlsx]
o12[presentation.pptx]
o13[custom_analyses.docx]
o23[supplementary.xlsx]
subgraph data1 [Source data]
direction LR
d11
d21
end
subgraph data2 [Transformed data]
direction LR
d12
d22
end
subgraph git1 [Github repository]
direction LR
tools
packages
end
tools --> packages
subgraph tools [ ]
tn1
tn2
end
subgraph packages [ ]
p1
end
subgraph idd [ ]
data1 --> git1
git1 --> data2
data2 --> git1
end
idd --> aaa
subgraph script1 [ ]
s21
s31
end
subgraph tool1[ ]
direction LR
t11
t12
end
subgraph output1 [ ]
direction LR
o11
o21
end
subgraph case1 [Annual Report]
direction LR
script1 --> tool1
tool1 --> output1
end
subgraph script2 [ ]
s22
s32
end
subgraph tool2 [ ]
direction LR
t21
t22
end
subgraph output2 [ ]
o12
end
subgraph case2 [Conference Presentation]
direction LR
script2 --> tool2
tool2 --> output2
end
subgraph script3 [ ]
s23
s33
end
subgraph tool3 [ ]
direction LR
t31
t32
end
subgraph output3 [ ]
direction LR
o13
o23
end
subgraph case3 [Ad-hoc analysis]
direction LR
script3 --> tool3
tool3 --> output3
end
subgraph aaa [ ]
direction TB
case1 ---- case2
case2 ---- case3
end
classDef highlight fill:#fff3e0,stroke:#fb8c00,color:#e65100;
class t11,t12,t21,t22,t31,t32,tn1,tn2 highlight;
classDef highlight2 fill:#80350E,stroke:#fb8c00,color:#ffffff;
class p1 highlight2;
classDef rfile fill:#276DC3,color:#FFFFFF,stroke:#ffffff;
class s11,s12,s13,s21,s22,s23,s31,s32,s33 rfile;
classDef simple-block fill:#ffffff;
class case1,case2,case3,data1,data2,git1,script1,script2,script3,tool1,tool2,tool3,output1,output2,output3,tools,packages simple-block;
classDef simpler-block fill:#ffffff,stroke-dasharray:0 4 0;
class idd,aaa simpler-block;