File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 2
2
class: CommandLineTool
3
3
cwlVersion: v1.0
4
4
doc : "Test of capturing stderr output in a docker container. "
5
+ requirements :
6
+ ShellCommandRequirement: {}
5
7
inputs : []
6
8
outputs :
7
9
output_file:
8
10
type : stderr
9
- baseCommand : [sh, -c, "echo foo 1>&2" ]
11
+ baseCommand : [sh]
12
+ arguments :
13
+ - '-c'
14
+ - { valueFrom : "echo foo 1>&2" , shellQuote : False }
10
15
stderr : std.err
Original file line number Diff line number Diff line change 2
2
class: CommandLineTool
3
3
cwlVersion: v1.0
4
4
doc : "Test of capturing stderr output in a docker container. "
5
+ requirements :
6
+ ShellCommandRequirement: {}
5
7
inputs : []
6
8
outputs :
7
9
output_file:
8
10
type : stderr
9
- baseCommand : [sh, -c, "echo foo 1>&2" ]
11
+ baseCommand : [sh]
12
+ arguments :
13
+ - '-c'
14
+ - { valueFrom : "echo foo 1>&2" , shellQuote : False }
Original file line number Diff line number Diff line change 2
2
class: CommandLineTool
3
3
cwlVersion: v1.0
4
4
doc : "Test of capturing stderr output in a docker container. "
5
+ requirements :
6
+ ShellCommandRequirement: {}
5
7
inputs : []
6
8
outputs :
7
9
output_file:
8
10
type : File
9
11
outputBinding : {glob : error.txt}
10
- baseCommand : [sh, -c, "echo foo 1>&2" ]
12
+ baseCommand : [sh]
13
+ arguments :
14
+ - '-c'
15
+ - { valueFrom : "echo foo 1>&2" , shellQuote : False }
11
16
stderr : error.txt
You can’t perform that action at this time.
0 commit comments