common-workflow-language / common-workflow-language/cwl-utils
types for input/output not consistent
Abierto
- Lenguaje dominante
- Python
- Estrellas
- 43
- Forks
- 28
- Merge medio
- 4 h 7 min
- PR fusionados (30 d)
- 4
Descripción
```
cwlVersion: v1.0
class: Workflow
inputs:
a: int
b: int[]
c:
type: int?
outputs: {}
steps: {}
```
python:
```
IN: from cwl_utils.parser_v1_0 import load_document
IN: [i.type for i in load_document('test.cwl').inputs]
Out:
['int',
,
['null', 'int']]
```
Shouldn't the `InputArraySchema` object also be a string, for example array?
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.