diff --git a/CHANGELOG.md b/CHANGELOG.md index b52f7c5..5862352 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.5](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v0.4.4...v0.4.5) (2024-04-17) + + +### Bug Fixes + +* fix path typo ([#72](https://github.com/snakemake/snakemake-executor-plugin-slurm/issues/72)) ([f64fb5a](https://github.com/snakemake/snakemake-executor-plugin-slurm/commit/f64fb5adce9dc285c0b212af22d98b4289e8ce25)) + ## [0.4.4](https://github.com/snakemake/snakemake-executor-plugin-slurm/compare/v0.4.3...v0.4.4) (2024-04-15) diff --git a/pyproject.toml b/pyproject.toml index 2a0774a..a6f8e82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "snakemake-executor-plugin-slurm" -version = "0.4.4" +version = "0.4.5" description = "A Snakemake executor plugin for submitting jobs to a SLURM cluster." authors = [ "Christian Meesters ", diff --git a/snakemake_executor_plugin_slurm/__init__.py b/snakemake_executor_plugin_slurm/__init__.py index c431edd..c5061c8 100644 --- a/snakemake_executor_plugin_slurm/__init__.py +++ b/snakemake_executor_plugin_slurm/__init__.py @@ -71,7 +71,7 @@ def run_job(self, job: JobExecutorInterface): group_or_rule = f"group_{job.name}" if job.is_group() else f"rule_{job.name}" try: - wildcard_str = f"_{'_'.join(job.wildcards)}" if job.wildcards else "" + wildcard_str = "_".join(job.wildcards) if job.wildcards else "" except AttributeError: wildcard_str = ""