File tree Expand file tree Collapse file tree 6 files changed +88
-0
lines changed
Expand file tree Collapse file tree 6 files changed +88
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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]
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments