From d738ad9d19f1c8c482393458141ca8bcc4a6b61f Mon Sep 17 00:00:00 2001
From: Dominik <dominik.brilhaus@hhu.de>
Date: Fri, 24 Mar 2023 15:56:30 +0100
Subject: [PATCH] automate import

---
 _workflow_scheme/README.md | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 _workflow_scheme/README.md

diff --git a/_workflow_scheme/README.md b/_workflow_scheme/README.md
new file mode 100644
index 0000000..4aa6f22
--- /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
-- 
GitLab