common-workflow-language / common-workflow-language/cwltool
Cwltool doesn't recognise syntax sugar for array of arrays
Open
- Dominant language
- Python
- Stars
- 376
- Forks
- 255
- Avg merge
- 2d 7h
- Merged PRs (30d)
- 12
Description
Example tool:
```yaml
cwlVersion: v1.0
requirements:
ScatterFeatureRequirement: {}
class: Workflow
steps:
add:
run: add.cwl
in:
one: one
two: two
out: [sum]
scatter: [one, two]
scatterMethod: nested_crossproduct
inputs:
one: int[]
two: int[]
outputs:
sum:
outputSource: add/sum
type: int[][]
```
Gives error:
Field `type` references unknown identifier `int[][]`
Contributor guide
Assessment
This issue has not been assessed yet.