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:
Story points:
-
Release:
Release relationship:
Auto
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