aboutsummaryrefslogtreecommitdiff
path: root/doc/echo.cwl
diff options
context:
space:
mode:
authorArun Isaac2021-11-05 12:10:06 +0530
committerArun Isaac2021-11-05 16:20:27 +0530
commit4bea0b85e1992a01dd36d32c8b2c68a497c6d001 (patch)
tree94e81feea6d0ebe90e3b0069e188c9bf42c7c1d2 /doc/echo.cwl
parentef62659838c6b5c0e7245aa434e07b89e3a603b9 (diff)
downloadccwl-4bea0b85e1992a01dd36d32c8b2c68a497c6d001.tar.gz
ccwl-4bea0b85e1992a01dd36d32c8b2c68a497c6d001.tar.lz
ccwl-4bea0b85e1992a01dd36d32c8b2c68a497c6d001.zip
doc: Document reuse of external CWL workflows.
* doc/ccwl.skb (Cookbook): New chapter. * doc/external-cwl-workflow.scm, doc/echo.cwl: New files. * .gitignore: Add !doc/echo.cwl.
Diffstat (limited to 'doc/echo.cwl')
-rw-r--r--doc/echo.cwl12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/echo.cwl b/doc/echo.cwl
new file mode 100644
index 0000000..6ecd530
--- /dev/null
+++ b/doc/echo.cwl
@@ -0,0 +1,12 @@
+cwlVersion: v1.2
+class: CommandLineTool
+baseCommand: echo
+arguments: ["-n"]
+inputs:
+ message:
+ type: string
+ inputBinding:
+ position: 1
+outputs:
+ output:
+ type: stdout