Skip to content

Commit

Permalink
Merge pull request #475 from kapilkd13/container-correction
Browse files Browse the repository at this point in the history
Container correction: Adding missing Docker container in conformance tests
  • Loading branch information
mr-c committed Jul 10, 2017
2 parents 8f26c9b + f30c103 commit 557bd4f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
4 changes: 3 additions & 1 deletion v1.0/v1.0/binding-test.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

class: CommandLineTool
cwlVersion: v1.0

hints:
- class: DockerRequirement
dockerPull: python:2-slim
inputs:
- id: reference
type: File
Expand Down
6 changes: 6 additions & 0 deletions v1.0/v1.0/cat1-testcli.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
"class": "CommandLineTool",
"cwlVersion": "v1.0",
"doc": "Print the contents of a file to stdout using 'cat' running in a docker container.",
"hints": [
{
"class": "DockerRequirement",
"dockerPull": "python:2-slim"
}
],
"inputs": [
{
"id": "file1",
Expand Down
10 changes: 8 additions & 2 deletions v1.0/v1.0/search.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cwlVersion: v1.0
$graph:
- id: index
class: CommandLineTool
baseCommand: python2
baseCommand: python
arguments:
- valueFrom: input.txt
position: 1
Expand All @@ -12,6 +12,9 @@ $graph:
- entryname: input.txt
entry: $(inputs.file)
- class: InlineJavascriptRequirement
hints:
- class: DockerRequirement
dockerPull: python:2-slim

inputs:
file: File
Expand All @@ -36,9 +39,12 @@ $graph:

- id: search
class: CommandLineTool
baseCommand: python2
baseCommand: python
requirements:
- class: InlineJavascriptRequirement
hints:
- class: DockerRequirement
dockerPull: python:2-slim
inputs:
file:
type: File
Expand Down
3 changes: 3 additions & 0 deletions v1.0/v1.0/stagefile.cwl
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
class: CommandLineTool
cwlVersion: v1.0
hints:
- class: DockerRequirement
dockerPull: python:2-slim
requirements:
InitialWorkDirRequirement:
listing:
Expand Down
7 changes: 6 additions & 1 deletion v1.0/v1.0/tmap-tool.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
"cwlVersion": "v1.0",

"class": "CommandLineTool",

"hints": [
{
"class": "DockerRequirement",
"dockerPull": "python:2-slim"
}
],
"inputs": [
{
"id": "reads",
Expand Down

0 comments on commit 557bd4f

Please sign in to comment.