common-workflow-language / common-workflow-language/cwl-utils

types for input/output not consistent

オープン
#2 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
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 はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。