File tree Expand file tree Collapse file tree 1 file changed +7
-22
lines changed Expand file tree Collapse file tree 1 file changed +7
-22
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env cwl-runner
2
2
class: Workflow
3
3
cwlVersion: v1.0
4
-
5
4
inputs :
6
- file1: File
7
-
5
+ file1: File
8
6
outputs :
9
- count_output:
10
- type : int
11
- outputSource : step1/count_output
12
-
7
+ count_output: {type : int , outputSource : step1/count_output}
13
8
requirements :
14
- - class: SubworkflowFeatureRequirement
15
-
9
+ SubworkflowFeatureRequirement: {}
16
10
steps :
17
11
step1:
18
- in :
19
- file1: file1
12
+ in : {file1: file1}
20
13
out : [count_output]
21
14
run :
22
15
class: Workflow
23
16
inputs :
24
17
file1: File
25
18
outputs :
26
- count_output:
27
- type : int
28
- outputSource : step2/output
19
+ count_output: {type : int , outputSource : step2/output}
29
20
steps :
30
- step1:
31
- run : wc-tool.cwl
32
- in : {file1: file1}
33
- out : [output]
34
- step2:
35
- run : parseInt-tool.cwl
36
- in : {file1: step1/output}
37
- out : [output]
21
+ step1: {run : wc-tool.cwl, in : {file1: file1}, out : [output]}
22
+ step2: {run : parseInt-tool.cwl, in : {file1: step1/output}, out : [output]}
You can’t perform that action at this time.
0 commit comments