comparison env/lib/python3.9/site-packages/cwltool/tests/wf/conflict.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: v1.1
3 $graph:
4 - class: CommandLineTool
5 id: makebzz
6 inputs: []
7 outputs:
8 bzz:
9 type: File
10 outputBinding:
11 glob: bzz
12 requirements:
13 ShellCommandRequirement: {}
14 arguments: [{shellQuote: false, valueFrom: "touch bzz"}]
15 - class: Workflow
16 id: main
17 inputs: []
18 outputs:
19 b1:
20 type: File
21 outputSource: step1/bzz
22 b2:
23 type: File
24 outputSource: step2/bzz
25 steps:
26 step1:
27 in: {}
28 out: [bzz]
29 run: '#makebzz'
30 step2:
31 in: {}
32 out: [bzz]
33 run: '#makebzz'