diff options
author | Arun Isaac | 2025-01-27 19:55:51 +0000 |
---|---|---|
committer | Arun Isaac | 2025-01-27 22:46:00 +0000 |
commit | 8e692efd091004cb77ecb2f0baeaccd7dd315d29 (patch) | |
tree | fe8df37e6f53efdf9c965acc61cf18f0da6863a4 /doc/hello-world.cwl | |
parent | b890ddd5a8cc6a741704b28515311d10be4df0f1 (diff) | |
download | ravanan-8e692efd091004cb77ecb2f0baeaccd7dd315d29.tar.gz ravanan-8e692efd091004cb77ecb2f0baeaccd7dd315d29.tar.lz ravanan-8e692efd091004cb77ecb2f0baeaccd7dd315d29.zip |
README: Fill out "How to use" section.
* README.md (How to use): Fill out section.
* doc/hello-world-inputs.json, doc/hello-world.cwl: New files.
Diffstat (limited to 'doc/hello-world.cwl')
-rw-r--r-- | doc/hello-world.cwl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/hello-world.cwl b/doc/hello-world.cwl new file mode 100644 index 0000000..2d8ecfb --- /dev/null +++ b/doc/hello-world.cwl @@ -0,0 +1,13 @@ +cwlVersion: v1.2 +class: CommandLineTool +baseCommand: + - echo + - Hello +inputs: + name: + type: string + inputBinding: + position: 1 +outputs: + message: + type: stdout |