Skip to content

Commit

Permalink
Tighten up formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Amstutz committed Sep 8, 2016
1 parent 779c2d4 commit 1582677
Showing 1 changed file with 7 additions and 22 deletions.
29 changes: 7 additions & 22 deletions v1.0/v1.0/count-lines10-wf.cwl
Original file line number Diff line number Diff line change
@@ -1,37 +1,22 @@
#!/usr/bin/env cwl-runner
class: Workflow
cwlVersion: v1.0

inputs:
file1: File

file1: File
outputs:
count_output:
type: int
outputSource: step1/count_output

count_output: {type: int, outputSource: step1/count_output}
requirements:
- class: SubworkflowFeatureRequirement

SubworkflowFeatureRequirement: {}
steps:
step1:
in:
file1: file1
in: {file1: file1}
out: [count_output]
run:
class: Workflow
inputs:
file1: File
outputs:
count_output:
type: int
outputSource: step2/output
count_output: {type: int, outputSource: step2/output}
steps:
step1:
run: wc-tool.cwl
in: {file1: file1}
out: [output]
step2:
run: parseInt-tool.cwl
in: {file1: step1/output}
out: [output]
step1: {run: wc-tool.cwl, in: {file1: file1}, out: [output]}
step2: {run: parseInt-tool.cwl, in: {file1: step1/output}, out: [output]}

0 comments on commit 1582677

Please sign in to comment.