diff --git a/_workflow_scheme/README.md b/_workflow_scheme/README.md new file mode 100644 index 0000000000000000000000000000000000000000..4aa6f22878af87acf33bba1c5b74ea064b35937b --- /dev/null +++ b/_workflow_scheme/README.md @@ -0,0 +1,24 @@ + + + +folder | fill | stroke | shape +-------|------|--------|------ +runs | #C21F3A | #2D3E69 | ellipse +assays | #FFC000 | #2D3E68 | rectangle +studies | #B4CE82 | #2D3E50 | rectangle +workflows | #4FB3D9 | #2D3E57 | rhombus + + +```bash + +find runs -mindepth 1 -maxdepth 1 -type d | awk '{print $1,"runs", "#C21F3A", "#2D3E69", "ellipse"}' | tr ' ' ',' > tmp.runs.columns.csv +find assays -mindepth 1 -maxdepth 1 -type d | awk '{print $1,"assays", "#C21F3A", "#2D3E69", "rectangle"}' | tr ' ' ',' > tmp.assays.columns.csv +find studies -mindepth 1 -maxdepth 1 -type d | awk '{print $1,"studies", "#B4CE82", "#2D3E50", "rectangle"}' | tr ' ' ',' > tmp.studies.columns.csv +find workflows -mindepth 1 -maxdepth 1 -type d | awk '{print $1,"workflows", "#4FB3D9", "#2D3E57", "rhombus"}' | tr ' ' ',' > tmp.workflows.columns.csv + +cat tmp.*.columns.csv + + +awk 'BEGIN{printf "Sr No\tName\tSub\tMarks\n"} {print}' drawioimport.csv + +``` \ No newline at end of file