Skip to content

Commit 9b287d6

Browse files
committed
Nextflow with Flowcept
1 parent 9ea67a2 commit 9b287d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wfcommons/wfbench/translator/nextflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def _get_tasks_in_topological_order(self) -> List[Task]:
134134
for potential_task in all_children:
135135
num_children = len(self.task_children[potential_task.task_id])
136136
if not num_children:
137-
self.out_files.add(f"{self.output_folder.absolute()}/{potential_task.output_files[0]}")
137+
self.out_files.add(f"{self.output_folder.absolute()}/data/{potential_task.output_files[0]}")
138138
if all(parent in sorted_tasks for parent in self._find_parents(potential_task.task_id)):
139139
tasks_in_current_level.append(potential_task)
140140
levels[current_level] = tasks_in_current_level

0 commit comments

Comments
 (0)