From 6f93e6c57b6105334ae244c24f472be9caedbd57 Mon Sep 17 00:00:00 2001 From: Brian O'Connor Date: Fri, 23 Dec 2016 11:01:52 -0800 Subject: [PATCH] bug fix for non array output --- DockstoreRunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DockstoreRunner.py b/DockstoreRunner.py index 2e80b86..b84fbbe 100644 --- a/DockstoreRunner.py +++ b/DockstoreRunner.py @@ -108,7 +108,7 @@ def map_outputs(self): file_map = {} if isinstance(value, dict): if parsed_json[key]['class'] == 'File': - self.fill_in_file_dict(file_map, parsed_json) + self.fill_in_file_dict(file_map, parsed_json[key]) result.append(file_map) file_map = {} elif isinstance(value, list):