Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/cwltool/tests/wf/1st-workflow.cwl @ 0:d30785e31577 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:18:57 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d30785e31577 |
---|---|
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] |