NLeSC / scriptcwl

Create cwl workflows by writing a simple Python script
https://scriptcwl.readthedocs.io/
Apache License 2.0
40 stars 9 forks source link

Default value for boolean is incorrect #93

Closed jvdzwaan closed 6 years ago

jvdzwaan commented 6 years ago

The default value of a workflow input of type boolean is 'true' (with quotes), this should be true (without quotes).

jvdzwaan commented 6 years ago

This works:

rec = wf.add_input(rec='boolean', default=True)