From 3a65efed0d6f9874ba4a0ef9869b6a7f37ba1ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20J=C3=A4hn?= Date: Tue, 30 Jan 2024 09:57:15 +0100 Subject: [PATCH] Just jobname for jobs --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index bab601d7..71e25618 100644 --- a/config.py +++ b/config.py @@ -414,7 +414,7 @@ def create_sbatch_script(self, job_name): walltime = getattr(self, 'walltime', {}).get(job_name, "00:30:00") script_lines = [ '#!/usr/bin/env bash', - f'#SBATCH --job-name="{job_name}_{self.chunk_id}"', + f'#SBATCH --job-name={job_name}', '#SBATCH --nodes=1', f'#SBATCH --time={walltime}', f'#SBATCH --output={self.logfile}',