File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1189
1189
}
1190
1190
tool : v1.0/shellchar2.cwl
1191
1191
doc : " Test that shell directives are quoted."
1192
+
1193
+ - job : v1.0/empty.json
1194
+ output :
1195
+ out : {
1196
+ " basename " : " emptyWritableDir" ,
1197
+ " listing " : [
1198
+ {
1199
+ " checksum " : " sha1$da39a3ee5e6b4b0d3255bfef95601890afd80709" ,
1200
+ " basename " : " blurg" ,
1201
+ " location " : " blurg" ,
1202
+ " class " : " File" ,
1203
+ " size " : 0
1204
+ }
1205
+ ],
1206
+ " location " : " emptyWritableDir" ,
1207
+ " class " : " Directory"
1208
+ }
1209
+ tool : v1.0/writable-dir.cwl
1210
+ doc : Test empty writable dir with InitialWorkDirRequirement
Original file line number Diff line number Diff line change
1
+ cwlVersion: v1.0
2
+ class: CommandLineTool
3
+ requirements :
4
+ InlineJavascriptRequirement: {}
5
+ InitialWorkDirRequirement:
6
+ listing :
7
+ - entryname : emptyWritableDir
8
+ writable : true
9
+ entry : "$({class: 'Directory', listing: []})"
10
+ inputs : []
11
+ outputs :
12
+ out :
13
+ type : Directory
14
+ outputBinding :
15
+ glob : emptyWritableDir
16
+ arguments : [touch, emptyWritableDir/blurg]
You can’t perform that action at this time.
0 commit comments