Skip to content

Commit 30ba0a4

Browse files
authored
Merge pull request #84 from wfcommons/nextflow_improvements
Nextflow improvements
2 parents bb2e267 + e8fcd4c commit 30ba0a4

5 files changed

Lines changed: 2 additions & 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

wfcommons/wfbench/translator/templates/cwl_templates/folder.cwl renamed to wfcommons/wfbench/translator/templates/cwl/folder.cwl

File renamed without changes.

wfcommons/wfbench/translator/templates/cwl_templates/shell.cwl renamed to wfcommons/wfbench/translator/templates/cwl/shell.cwl

File renamed without changes.

wfcommons/wfbench/translator/templates/cwl_templates/wfbench.cwl renamed to wfcommons/wfbench/translator/templates/cwl/wfbench.cwl

File renamed without changes.

wfcommons/wfbench/translator/templates/flowcept_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949

5050
try:
5151
flowcept_agent.stop()
52+
time.sleep(5)
5253
except Exception:
5354
import traceback
5455
traceback.print_exc()

0 commit comments

Comments
 (0)