Skip to content

Commit 392be2f

Browse files
committed
fixing site build?
1 parent 57a5bc8 commit 392be2f

6 files changed

+88
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: cwl:draft-4.dev2
4+
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
5+
hints:
6+
DockerRequirement:
7+
dockerPull: debian:wheezy
8+
inputs:
9+
file1:
10+
type: File
11+
label: Input File
12+
description: "The file that will be copied using 'cat'"
13+
inputBinding: {position: 1}
14+
outputs:
15+
output_file:
16+
type: stdout
17+
baseCommand: cat
18+
stdout: cat-out
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: cwl:draft-4.dev2
4+
description: "Print the contents of a file to stdout using 'cat' running in a docker container."
5+
hints:
6+
DockerRequirement:
7+
dockerPull: debian:wheezy
8+
inputs:
9+
file1:
10+
type: File
11+
label: Input File
12+
description: "The file that will be copied using 'cat'"
13+
inputBinding: {position: 1}
14+
outputs:
15+
output_file:
16+
type: stdout
17+
baseCommand: cat
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: cwl:draft-4.dev2
4+
description: "Test of capturing stderr output in a docker container."
5+
hints:
6+
DockerRequirement:
7+
dockerPull: debian:wheezy
8+
9+
inputs: []
10+
11+
outputs:
12+
output_file:
13+
type: stderr
14+
15+
baseCommand: egrep
16+
successCodes: [2]
17+
18+
stderr: std.err
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: cwl:draft-4.dev2
4+
description: "Test of capturing stderr output in a docker container."
5+
hints:
6+
DockerRequirement:
7+
dockerPull: debian:wheezy
8+
9+
inputs: []
10+
11+
outputs:
12+
output_file:
13+
type: stderr
14+
15+
baseCommand: egrep
16+
successCodes: [2]

draft-4/draft-4/egrep-stderr.cwl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env cwl-runner
2+
class: CommandLineTool
3+
cwlVersion: cwl:draft-4.dev2
4+
description: "Test of capturing stderr output in a docker container."
5+
hints:
6+
DockerRequirement:
7+
dockerPull: debian:wheezy
8+
inputs: []
9+
outputs:
10+
output_file:
11+
type: File
12+
outputBinding: {glob: error.txt}
13+
baseCommand: egrep
14+
successCodes: [2]
15+
stderr: error.txt

site/draft4-deps.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
"path": "../draft-4/salad/schema_salad/metaschema/metaschema.yml",
1212
"class": "File"
1313
},
14+
{
15+
"path": "../draft-4/salad/schema_salad/metaschema/metaschema_base.yml",
16+
"class": "File"
17+
},
1418
{
1519
"path": "../draft-4/salad/schema_salad/metaschema/salad.md",
1620
"class": "File"

0 commit comments

Comments
 (0)