comparison env/lib/python3.7/site-packages/cwltool/tests/wf/count-lines1-wf.cwl @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 #!/usr/bin/env cwl-runner
2 class: Workflow
3 cwlVersion: v1.0
4 requirements:
5 ResourceRequirement:
6 ramMin: 100
7
8 inputs:
9 file1:
10 type: File
11
12 outputs:
13 count_output:
14 type: int
15 outputSource: step2/output
16
17 steps:
18 step1:
19 run: wc-tool.cwl
20 in:
21 file1: file1
22 out: [output]
23
24 step2:
25 run: parseInt-tool.cwl
26 in:
27 file1: step1/output
28 out: [output]