comparison env/lib/python3.7/site-packages/cwltool/tests/wf/conflict.cwl @ 5:9b1c78e6ba9c draft default tip

"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author shellac
date Mon, 01 Jun 2020 08:59:25 -0400
parents 79f47841a781
children
comparison
equal deleted inserted replaced
4:79f47841a781 5:9b1c78e6ba9c
1 cwlVersion: v1.1
2 $graph:
3 - class: CommandLineTool
4 id: makebzz
5 inputs: []
6 outputs:
7 bzz:
8 type: File
9 outputBinding:
10 glob: bzz
11 requirements:
12 ShellCommandRequirement: {}
13 arguments: [{shellQuote: false, valueFrom: "touch bzz"}]
14 - class: Workflow
15 id: main
16 inputs: []
17 outputs:
18 b1:
19 type: File
20 outputSource: step1/bzz
21 b2:
22 type: File
23 outputSource: step2/bzz
24 steps:
25 step1:
26 in: {}
27 out: [bzz]
28 run: '#makebzz'
29 step2:
30 in: {}
31 out: [bzz]
32 run: '#makebzz'