We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078453c commit 2b08369Copy full SHA for 2b08369
1 file changed
wfcommons/wfbench/translator/nextflow.py
@@ -62,10 +62,10 @@ def translate(self, output_folder: pathlib.Path) -> None:
62
63
if self.workflow.workflow_id:
64
shutil.copy(this_dir.joinpath("templates/flowcept_agent.py"), output_folder.joinpath("bin"))
65
+ self.logger.info(f"Workflow ID: {self.workflow.workflow_id}")
66
67
# Create a topological order of the tasks
68
sorted_tasks = self._get_tasks_in_topological_order()
- # print([t.task_id for t in sorted_tasks])
69
70
# Create the bash script for each task
71
for task in sorted_tasks:
0 commit comments