We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91032ab commit 010dd97Copy full SHA for 010dd97
cwltool/load_tool.py
@@ -124,6 +124,8 @@ def _convert_stdstreams_to_files(workflowobj):
124
if isinstance(workflowobj, dict):
125
if workflowobj.get('class') == 'CommandLineTool':
126
for out in workflowobj.get('outputs', []):
127
+ if type(out) is not CommentedMap:
128
+ raise ValidationException("Output '%s' is not valid" % out)
129
for streamtype in ['stdout', 'stderr']:
130
if out.get('type') == streamtype:
131
if 'outputBinding' in out:
0 commit comments