From e4780512fccc79c4f3b54f83701fa65c74b89636 Mon Sep 17 00:00:00 2001 From: Dominik Brilhaus <brilhaus@nfdi4plants.org> Date: Wed, 17 Apr 2024 11:18:55 +0200 Subject: [PATCH] add other two cwl examples to readme --- runs/README.md | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/runs/README.md b/runs/README.md index 2369b43..58da9f3 100644 --- a/runs/README.md +++ b/runs/README.md @@ -1,13 +1,28 @@ -# CWL example with a docker container +# CWL examples :bulb: Requires installation of a CWL runner and docker checkout CWL guides in the [DataPLANT Knowledge Base](https://nfdi4plants.org/nfdi4plants.knowledgebase/docs/guides/ComputationalWorkflows/index.html) +All three workflow examples below (re)create the file [fsResult1/result.csv](fsResult1/result.csv). + +## with a docker container + ```bash cd runs/fsResult1 - cwltool ../../workflows/FixedScript/FSharpArcCapsule.cwl ../FSharpArcCapsule.yml ``` -This workflow creates the file [fsResult1/result.csv](fsResult1/result.csv). +## With a fixed script in a mounted arc + +```bash +cd runs/fsResult1 +cwltool ../../workflows/ARCMount/FSharpArcCapsule.cwl ../FSharpArcCapsule.yml +``` + +## Within an ARC with a devcontainer + +```bash +cd runs/fsResult1 +cwltool ../../workflows/Devcontainer/FSharpArcCapsule.cwl ../FSharpArcCapsule.yml +``` -- GitLab