Skip to content

Commit 50bd76a

Browse files
author
Peter Amstutz
committed
Updating to draft-4.dev2
1 parent d03b190 commit 50bd76a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+78
-87
lines changed

draft-4/Process.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ $graph:
3232
- cwl:draft-3.dev5
3333
- cwl:draft-3
3434
- cwl:draft-4.dev1
35+
- cwl:draft-4.dev2
3536

3637
- name: CWLType
3738
type: enum

draft-4/draft-4/binding-test.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env cwl-runner
22

33
class: CommandLineTool
4-
cwlVersion: cwl:draft-4.dev1
4+
cwlVersion: cwl:draft-4.dev2
55

66
inputs:
77
reference:

draft-4/draft-4/bwa-mem-tool.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22

3-
cwlVersion: cwl:draft-4.dev1
3+
cwlVersion: cwl:draft-4.dev2
44

55
class: CommandLineTool
66

draft-4/draft-4/cat1-tool.cwl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env cwl-runner
2-
cwlVersion: cwl:draft-4.dev1
2+
cwlVersion: cwl:draft-4.dev2
33
class: CommandLineTool
44
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
55
hints:
@@ -10,7 +10,7 @@ inputs:
1010
type: File
1111
inputBinding: {position: 1}
1212
numbering:
13-
type: ["null", boolean]
13+
type: boolean?
1414
inputBinding:
1515
position: 0
1616
prefix: -n

draft-4/draft-4/cat2-tool.cwl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
#!/usr/bin/env cwl-runner
22
class: CommandLineTool
3-
cwlVersion: cwl:draft-4.dev1
3+
cwlVersion: cwl:draft-4.dev2
44
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
55
hints:
66
DockerRequirement:
77
dockerPull: debian:wheezy
88
inputs:
9-
file1:
10-
type: File
9+
file1: File
1110
outputs: []
1211
baseCommand: cat
1312
stdin: $(inputs.file1.path)

draft-4/draft-4/cat3-tool.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22
class: CommandLineTool
3-
cwlVersion: cwl:draft-4.dev1
3+
cwlVersion: cwl:draft-4.dev2
44
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
55
hints:
66
DockerRequirement:

draft-4/draft-4/cat4-tool.cwl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
#!/usr/bin/env cwl-runner
22
class: CommandLineTool
3-
cwlVersion: cwl:draft-4.dev1
3+
cwlVersion: cwl:draft-4.dev2
44
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
55
hints:
66
DockerRequirement:
77
dockerPull: debian:wheezy
88
inputs:
9-
file1:
10-
type: File
9+
file1: File
1110
outputs:
1211
output_txt:
1312
type: File

draft-4/draft-4/cat5-tool.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env cwl-runner
2-
cwlVersion: cwl:draft-4.dev1
2+
cwlVersion: cwl:draft-4.dev2
33
class: CommandLineTool
44
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
55
hints:

draft-4/draft-4/conflict-wf.cwl

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cwlVersion: cwl:draft-4.dev1
1+
cwlVersion: cwl:draft-4.dev2
22
$graph:
33
- id: echo
44
class: CommandLineTool
@@ -41,35 +41,32 @@ $graph:
4141
id: collision
4242

4343
inputs:
44-
input_1:
45-
type: string
46-
47-
input_2:
48-
type: string
44+
input_1: string
45+
input_2: string
4946

5047
outputs:
5148
fileout:
5249
type: File
53-
source: "#collision/cat_step/fileout"
50+
outputSource: cat_step/fileout
5451

5552
steps:
5653
echo_1:
5754
run: "#echo"
5855
in:
59-
text: "#collision/input_1"
56+
text: input_1
6057
out: [fileout]
6158

6259
echo_2:
6360
run: "#echo"
6461
in:
65-
text: "#collision/input_2"
62+
text: input_2
6663
out: [fileout]
6764

6865
cat_step:
6966
run: "#cat"
7067
in:
7168
file1:
72-
source: "#collision/echo_1/fileout"
69+
source: echo_1/fileout
7370
file2:
74-
source: "#collision/echo_2/fileout"
71+
source: echo_2/fileout
7572
out: [fileout]

draft-4/draft-4/count-lines1-wf.cwl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22
class: Workflow
3-
cwlVersion: cwl:draft-4.dev1
3+
cwlVersion: cwl:draft-4.dev2
44

55
inputs:
66
file1:
@@ -9,7 +9,7 @@ inputs:
99
outputs:
1010
count_output:
1111
type: int
12-
source: "#step2/output"
12+
source: step2/output
1313

1414
steps:
1515
step1:

0 commit comments

Comments
 (0)