File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 713
713
" class " : " File"
714
714
}
715
715
tool : v1.0/dir.cwl
716
- doc : Test directory input
716
+ doc : Test directory input with parameter reference
717
717
718
718
- job : v1.0/dir-job.yml
719
719
output :
809
809
size : 21
810
810
tool : v1.0/nameroot.cwl
811
811
doc : Test nameroot/nameext expression in arguments, stdout
812
+
813
+ - job : v1.0/dir-job.yml
814
+ output :
815
+ " outlist " : {
816
+ " size " : 20,
817
+ " location " : " output.txt" ,
818
+ " checksum " : " sha1$13cda8661796ae241da3a18668fb552161a72592" ,
819
+ " class " : " File"
820
+ }
821
+ tool : v1.0/dir6.cwl
822
+ doc : Test directory input with inputBinding
Original file line number Diff line number Diff line change
1
+ class: CommandLineTool
2
+ cwlVersion: v1.0
3
+ requirements :
4
+ - class: ShellCommandRequirement
5
+ inputs :
6
+ indir:
7
+ type : Directory
8
+ inputBinding :
9
+ prefix : cd
10
+ position : -1
11
+ outputs :
12
+ outlist:
13
+ type : File
14
+ outputBinding :
15
+ glob : output.txt
16
+ arguments : [
17
+ {shellQuote : false, valueFrom : "&&" },
18
+ "find" , ". " ,
19
+ {shellQuote : false, valueFrom : "|" },
20
+ "sort" ]
21
+ stdout : output.txt
You can’t perform that action at this time.
0 commit comments