We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d86732d + 8b57c4d commit de0bb0bCopy full SHA for de0bb0b
1 file changed
planemo/galaxy/activity.py
@@ -365,6 +365,9 @@ def get_dataset(dataset_details, filename=None):
365
ctx.vlog("collecting outputs to directory %s" % output_directory)
366
for runnable_output in get_outputs(self._runnable):
367
output_id = runnable_output.get_id()
368
+ if not output_id:
369
+ ctx.vlog("Workflow output identified without an ID (label), skipping")
370
+ continue
371
output_dict_value = None
372
if self._runnable.type in [RunnableType.cwl_workflow, RunnableType.cwl_tool]:
373
galaxy_output = self.to_galaxy_output(runnable_output)
0 commit comments