Skip to content
Snippets Groups Projects
Commit 9d84e0c1 authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

fix qsub parameter

parent 5407117d
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,7 @@ class code(base):
os.chdir(self.work_dir)
qsub_atoms = ['qsub']
if len(job_name_list) >= 1:
qsub_atoms += ['-hold_id', job_name_list[-1]]
qsub_atoms += ['-hold_jid', job_name_list[-1]]
subprocess.call(qsub_atoms + [qsub_script_name])
os.chdir(current_dir)
job_name_list.append(self.name + '_' + suffix)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment