Skip to content

Commit 91bb7b4

Browse files
author
Peter Amstutz
committed
Test case for command line generation of array-of-arrays.
1 parent 5baf924 commit 91bb7b4

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

v1.0/conformance_test_v1.0.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -834,3 +834,13 @@
834834
}
835835
tool: v1.0/dir6.cwl
836836
doc: Test directory input with inputBinding
837+
838+
- job: v1.0/nested-array-job.yml
839+
output:
840+
echo:
841+
checksum: sha1$3f786850e387550fdab836ed7e6dc881de23001b
842+
location: echo.txt
843+
class: File
844+
size: 2
845+
tool: v1.0/nested-array.cwl
846+
doc: Test command line generation of array-of-arrays

v1.0/v1.0/nested-array-job.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
letters: [[a]]

v1.0/v1.0/nested-array.cwl

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
cwlVersion: v1.0
2+
class: CommandLineTool
3+
baseCommand: echo
4+
inputs:
5+
letters:
6+
type:
7+
type: array
8+
items:
9+
type: array
10+
items: string
11+
inputBinding:
12+
position: 1
13+
stdout: echo.txt
14+
outputs:
15+
echo: stdout

0 commit comments

Comments
 (0)