File tree 2 files changed +35
-1
lines changed 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 659
659
}
660
660
}
661
661
tool : v1.0/test-cwl-out.cwl
662
- doc : Test support for reading cwl.output.json when running in Docker container
662
+ doc : |
663
+ Test support for reading cwl.output.json when running in a Docker container
664
+ and just "path" is provided.
665
+
666
+ - job : v1.0/empty.json
667
+ output : {
668
+ " foo " : {
669
+ " location " : " foo" ,
670
+ " class " : " File" ,
671
+ " checksum " : " sha1$f1d2d2f924e986ac86fdf7b36c94bcdf32beec15" ,
672
+ " size " : 4
673
+ }
674
+ }
675
+ tool : v1.0/test-cwl-out2.cwl
676
+ doc : |
677
+ Test support for reading cwl.output.json when running in a Docker container
678
+ and just "location" is provided.
663
679
664
680
- job : v1.0/abc.json
665
681
output :
Original file line number Diff line number Diff line change
1
+ class: CommandLineTool
2
+ cwlVersion: v1.0
3
+ requirements :
4
+ - class: ShellCommandRequirement
5
+ hints :
6
+ DockerRequirement:
7
+ dockerPull: "debian:wheezy"
8
+
9
+ inputs : []
10
+
11
+ outputs :
12
+ - id : foo
13
+ type : File
14
+
15
+ arguments :
16
+ - valueFrom : >
17
+ echo foo > foo && echo '{"foo": {"location": "file://$(runtime. outdir)/foo", "class": "File"} }' > cwl.output.json
18
+ shellQuote : false
You can’t perform that action at this time.
0 commit comments