File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 173
173
tool : v1.1.0-dev1/wc-tool.cwl
174
174
doc : Test command execution in with stdin and stdout redirection
175
175
176
+ - job : v1.1.0-dev1/wc-job.json
177
+ output :
178
+ output :
179
+ class : File
180
+ checksum : sha1$631bfbac524e2d04cdcc5ec33ade827fc10b06ae
181
+ location : output
182
+ size : 15
183
+ tool : v1.1.0-dev1/wc-tool-shortcut.cwl
184
+ doc : Test command execution in with stdin and stdout redirection using stdin shortcut
185
+
186
+
176
187
- job : v1.1.0-dev1/parseInt-job.json
177
188
output : {output: 42}
178
189
tool : v1.1.0-dev1/parseInt-tool.cwl
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env cwl-runner
2
+ class: CommandLineTool
3
+ cwlVersion: v1.1.0-dev1
4
+ doc : "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: stdin
10
+ outputs :
11
+ output_txt:
12
+ type : File
13
+ outputBinding :
14
+ glob : output.txt
15
+ baseCommand : cat
16
+ stdout : output.txt
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env cwl-runner
2
+
3
+ class: CommandLineTool
4
+ cwlVersion: v1.1.0-dev1
5
+
6
+ inputs :
7
+ file1: stdin
8
+
9
+ outputs :
10
+ output:
11
+ type : File
12
+ outputBinding : { glob : output }
13
+
14
+ baseCommand : [wc]
15
+
16
+ stdout : output
You can’t perform that action at this time.
0 commit comments