comparison env/lib/python3.9/site-packages/cwltool/tests/wf/missing_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 class: Workflow
3
4 label: "Hello World"
5 doc: "Outputs a message using echo"
6
7 inputs: []
8
9 outputs:
10 response:
11 outputSource: step0/response
12 type: File
13
14 steps:
15 step0:
16 run:
17 class: CommandLineTool
18 inputs:
19 message:
20 type: string
21 doc: "The message to print"
22 default: "Hello World"
23 inputBinding:
24 position: 1
25 baseCommand: echo
26 stdout: response.txt
27 outputs:
28 response:
29 type: stdout
30 in: []
31 out: [response]