Skip to content

Commit 1582677

Browse files
author
Peter Amstutz
committed
Tighten up formatting
1 parent 779c2d4 commit 1582677

File tree

1 file changed

+7
-22
lines changed

1 file changed

+7
-22
lines changed

v1.0/v1.0/count-lines10-wf.cwl

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,22 @@
11
#!/usr/bin/env cwl-runner
22
class: Workflow
33
cwlVersion: v1.0
4-
54
inputs:
6-
file1: File
7-
5+
file1: File
86
outputs:
9-
count_output:
10-
type: int
11-
outputSource: step1/count_output
12-
7+
count_output: {type: int, outputSource: step1/count_output}
138
requirements:
14-
- class: SubworkflowFeatureRequirement
15-
9+
SubworkflowFeatureRequirement: {}
1610
steps:
1711
step1:
18-
in:
19-
file1: file1
12+
in: {file1: file1}
2013
out: [count_output]
2114
run:
2215
class: Workflow
2316
inputs:
2417
file1: File
2518
outputs:
26-
count_output:
27-
type: int
28-
outputSource: step2/output
19+
count_output: {type: int, outputSource: step2/output}
2920
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]}

0 commit comments

Comments
 (0)