Skip to content

Commit

Permalink
Merge pull request common-workflow-language#426 from common-workflow-…
Browse files Browse the repository at this point in the history
…language/fix-wc-test

Fix wc test
  • Loading branch information
mr-c committed Apr 11, 2017
2 parents f2ea521 + 6acb016 commit e150035
Show file tree
Hide file tree
Showing 14 changed files with 6 additions and 16 deletions.
4 changes: 2 additions & 2 deletions v1.0/conformance_test_v1.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@
- job: v1.0/wc-job.json
output:
output:
checksum: sha1$3596ea087bfdaf52380eae441077572ed289d657
class: File
checksum: sha1$631bfbac524e2d04cdcc5ec33ade827fc10b06ae
location: output
size: 15
size: 3
tool: v1.0/wc-tool.cwl
doc: Test command execution in with stdin and stdout redirection

Expand Down
1 change: 0 additions & 1 deletion v1.0/v1.0/count-lines10-wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ steps:
out: [count_output]
run:
class: Workflow
id: subwf
inputs:
file1: File
outputs:
Expand Down
1 change: 0 additions & 1 deletion v1.0/v1.0/count-lines2-wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ steps:
out: [parseInt_output]
run:
class: ExpressionTool
id: subtool
inputs:
parseInt_file1:
type: File
Expand Down
1 change: 0 additions & 1 deletion v1.0/v1.0/scatter-valuefrom-wf1.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ steps:
scatter: echo_in
run:
class: CommandLineTool
id: subtool
inputs:
first:
type: string
Expand Down
1 change: 0 additions & 1 deletion v1.0/v1.0/scatter-valuefrom-wf5.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ steps:
scatter: echo_in
run:
class: CommandLineTool
id: subtool
inputs:
first:
type: string
Expand Down
1 change: 0 additions & 1 deletion v1.0/v1.0/scatter-wf1.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ steps:
scatter: echo_in
run:
class: CommandLineTool
id: subtool
inputs:
echo_in:
type: string
Expand Down
2 changes: 1 addition & 1 deletion v1.0/v1.0/wc-tool.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ outputs:
type: File
outputBinding: { glob: output }

baseCommand: [wc]
baseCommand: [wc, -l]

stdin: $(inputs.file1.path)
stdout: output
4 changes: 2 additions & 2 deletions v1.1.0-dev1/conformance_test_v1.1.0-dev1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@
- job: v1.1.0-dev1/wc-job.json
output:
output:
checksum: sha1$3596ea087bfdaf52380eae441077572ed289d657
class: File
checksum: sha1$631bfbac524e2d04cdcc5ec33ade827fc10b06ae
location: output
size: 15
size: 3
tool: v1.1.0-dev1/wc-tool.cwl
doc: Test command execution in with stdin and stdout redirection

Expand Down
1 change: 0 additions & 1 deletion v1.1.0-dev1/v1.1.0-dev1/count-lines10-wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ steps:
out: [count_output]
run:
class: Workflow
id: subwf
inputs:
file1: File
outputs:
Expand Down
1 change: 0 additions & 1 deletion v1.1.0-dev1/v1.1.0-dev1/count-lines2-wf.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ steps:
out: [parseInt_output]
run:
class: ExpressionTool
id: subtool
inputs:
parseInt_file1:
type: File
Expand Down
1 change: 0 additions & 1 deletion v1.1.0-dev1/v1.1.0-dev1/scatter-valuefrom-wf1.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ steps:
scatter: echo_in
run:
class: CommandLineTool
id: subtool
inputs:
first:
type: string
Expand Down
1 change: 0 additions & 1 deletion v1.1.0-dev1/v1.1.0-dev1/scatter-valuefrom-wf5.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ steps:
scatter: echo_in
run:
class: CommandLineTool
id: subtool
inputs:
first:
type: string
Expand Down
1 change: 0 additions & 1 deletion v1.1.0-dev1/v1.1.0-dev1/scatter-wf1.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ steps:
scatter: echo_in
run:
class: CommandLineTool
id: subtool
inputs:
echo_in:
type: string
Expand Down
2 changes: 1 addition & 1 deletion v1.1.0-dev1/v1.1.0-dev1/wc-tool.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ outputs:
type: File
outputBinding: { glob: output }

baseCommand: [wc]
baseCommand: [wc, -l]

stdin: $(inputs.file1.path)
stdout: output

0 comments on commit e150035

Please sign in to comment.