Skip to content

Commit

Permalink
Test case for command line generation of array-of-arrays.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Amstutz committed Aug 4, 2016
1 parent 5baf924 commit 91bb7b4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
10 changes: 10 additions & 0 deletions v1.0/conformance_test_v1.0.yaml
Expand Up @@ -834,3 +834,13 @@
}
tool: v1.0/dir6.cwl
doc: Test directory input with inputBinding

- job: v1.0/nested-array-job.yml
output:
echo:
checksum: sha1$3f786850e387550fdab836ed7e6dc881de23001b
location: echo.txt
class: File
size: 2
tool: v1.0/nested-array.cwl
doc: Test command line generation of array-of-arrays
1 change: 1 addition & 0 deletions v1.0/v1.0/nested-array-job.yml
@@ -0,0 +1 @@
letters: [[a]]
15 changes: 15 additions & 0 deletions v1.0/v1.0/nested-array.cwl
@@ -0,0 +1,15 @@
cwlVersion: v1.0
class: CommandLineTool
baseCommand: echo
inputs:
letters:
type:
type: array
items:
type: array
items: string
inputBinding:
position: 1
stdout: echo.txt
outputs:
echo: stdout

0 comments on commit 91bb7b4

Please sign in to comment.