Actions
Bug #17686
closedWorkflow crash because the initial value for parameters is assigned "null" instead of an empty list
Status:
Resolved
Priority:
Normal
Assigned To:
Category:
Workbench2
Target version:
Start date:
05/18/2021
Due date:
% Done:
100%
Estimated time:
(Total: 0.00 h)
Story points:
-
Description
cwlVersion: v1.2
class: Workflow
inputs:
foo: File[]
bar: Directory[]
outputs: []
steps: []
not working
cwlVersion: v1.2
class: Workflow
inputs:
foo:
type: File[]
default: []
bar:
type: Directory[]
default: []
outputs: []
steps: []
Actions