From a88276f24a7754f4967d259456481482057855ff Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 15 Nov 2024 22:57:15 +0100 Subject: [PATCH] fixes --- pysqa/base/modular.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysqa/base/modular.py b/pysqa/base/modular.py index 382cf92..f32e4bc 100644 --- a/pysqa/base/modular.py +++ b/pysqa/base/modular.py @@ -73,7 +73,7 @@ def submit_job( int: The cluster queue ID. """ - working_directory, queue_script_path = self._write_queue_script( + working_directory, submission_script_path = self._write_queue_script( queue=queue, job_name=job_name, working_directory=working_directory, @@ -87,7 +87,7 @@ def submit_job( cluster_module = self._queue_to_cluster_dict[queue] commands = self._switch_cluster_command( cluster_module=cluster_module - ) + self._list_command_to_be_executed(queue_script_path=queue_script_path) + ) + self._list_command_to_be_executed(submission_script_path=submission_script_path) out = self._execute_command( commands=commands, working_directory=working_directory,