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