Skip to content

Commit 6d253ae

Browse files
jaicherfgvieira
andauthored
Update snakemake_executor_plugin_slurm/__init__.py
Better split jobid and wildcards Co-authored-by: Filipe G. Vieira <[email protected]>
1 parent 694fa29 commit 6d253ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: snakemake_executor_plugin_slurm/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run_job(self, job: JobExecutorInterface):
6868
log_folder = f"group_{job.name}" if job.is_group() else f"rule_{job.name}"
6969

7070
try:
71-
wildcard_str = f"_{'_'.join(job.wildcards)}" if job.wildcards else ""
71+
wildcard_str = f".{'_'.join(job.wildcards)}" if job.wildcards else ""
7272
wildcard_str = wildcard_str.replace("/", ".")
7373
except AttributeError:
7474
wildcard_str = ""

0 commit comments

Comments
 (0)