We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ea67a2 commit 9b287d6Copy full SHA for 9b287d6
1 file changed
wfcommons/wfbench/translator/nextflow.py
@@ -134,7 +134,7 @@ def _get_tasks_in_topological_order(self) -> List[Task]:
134
for potential_task in all_children:
135
num_children = len(self.task_children[potential_task.task_id])
136
if not num_children:
137
- self.out_files.add(f"{self.output_folder.absolute()}/{potential_task.output_files[0]}")
+ self.out_files.add(f"{self.output_folder.absolute()}/data/{potential_task.output_files[0]}")
138
if all(parent in sorted_tasks for parent in self._find_parents(potential_task.task_id)):
139
tasks_in_current_level.append(potential_task)
140
levels[current_level] = tasks_in_current_level
0 commit comments