comparison env/lib/python3.9/site-packages/cwltool/tests/wf/wrong_cwlVersion.cwl @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 #!/usr/bin/env cwl-runner
2 cwlVersion: v0.1
3 class: Workflow
4
5 label: "Hello World"
6 doc: "Outputs a message using echo"
7
8 inputs: []
9
10 outputs:
11 response:
12 outputSource: step0/response
13 type: File
14
15 steps:
16 step0:
17 run:
18 class: CommandLineTool
19 inputs:
20 message:
21 type: string
22 doc: "The message to print"
23 default: "Hello World"
24 inputBinding:
25 position: 1
26 baseCommand: echo
27 stdout: response.txt
28 outputs:
29 response:
30 type: stdout
31 in: []
32 out: [response]