common-workflow-language / common-workflow-language/cwl-utils
types for input/output not consistent
オープン
- 主要言語
- Python
- スター
- 43
- フォーク
- 28
- 平均マージ
- 4時間 7分
- マージ済み PR(30日)
- 4
説明
```
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?
コントリビューションガイド
評価
この issue はまだ評価されていません。