Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 557bd4f

Browse files
authoredJul 10, 2017
Merge pull request #475 from kapilkd13/container-correction
Container correction: Adding missing Docker container in conformance tests
2 parents 8f26c9b + f30c103 commit 557bd4f

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed
 

‎v1.0/v1.0/binding-test.cwl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
class: CommandLineTool
44
cwlVersion: v1.0
5-
5+
hints:
6+
- class: DockerRequirement
7+
dockerPull: python:2-slim
68
inputs:
79
- id: reference
810
type: File

‎v1.0/v1.0/cat1-testcli.cwl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
"class": "CommandLineTool",
44
"cwlVersion": "v1.0",
55
"doc": "Print the contents of a file to stdout using 'cat' running in a docker container.",
6+
"hints": [
7+
{
8+
"class": "DockerRequirement",
9+
"dockerPull": "python:2-slim"
10+
}
11+
],
612
"inputs": [
713
{
814
"id": "file1",

‎v1.0/v1.0/search.cwl

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cwlVersion: v1.0
22
$graph:
33
- id: index
44
class: CommandLineTool
5-
baseCommand: python2
5+
baseCommand: python
66
arguments:
77
- valueFrom: input.txt
88
position: 1
@@ -12,6 +12,9 @@ $graph:
1212
- entryname: input.txt
1313
entry: $(inputs.file)
1414
- class: InlineJavascriptRequirement
15+
hints:
16+
- class: DockerRequirement
17+
dockerPull: python:2-slim
1518

1619
inputs:
1720
file: File
@@ -36,9 +39,12 @@ $graph:
3639

3740
- id: search
3841
class: CommandLineTool
39-
baseCommand: python2
42+
baseCommand: python
4043
requirements:
4144
- class: InlineJavascriptRequirement
45+
hints:
46+
- class: DockerRequirement
47+
dockerPull: python:2-slim
4248
inputs:
4349
file:
4450
type: File

‎v1.0/v1.0/stagefile.cwl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
class: CommandLineTool
22
cwlVersion: v1.0
3+
hints:
4+
- class: DockerRequirement
5+
dockerPull: python:2-slim
36
requirements:
47
InitialWorkDirRequirement:
58
listing:

‎v1.0/v1.0/tmap-tool.cwl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
"cwlVersion": "v1.0",
44

55
"class": "CommandLineTool",
6-
6+
"hints": [
7+
{
8+
"class": "DockerRequirement",
9+
"dockerPull": "python:2-slim"
10+
}
11+
],
712
"inputs": [
813
{
914
"id": "reads",

0 commit comments

Comments
 (0)
Please sign in to comment.