comparison env/lib/python3.9/site-packages/cwltool/tests/wf/1st-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 inputs:
6 inp: File
7 ex: string
8
9 outputs:
10 classout:
11 type: File
12 outputSource: argument/classfile
13
14 steps:
15 untar:
16 run: tar-param.cwl
17 in:
18 tarfile: inp
19 extractfile: ex
20 out: [example_out]
21
22 argument:
23 run: arguments.cwl
24 in:
25 src: untar/example_out
26 out: [classfile]