Skip to content

Commit

Permalink
fix: adapt to interface changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Nov 30, 2023
1 parent d28698c commit ddbebab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.13.0"
snakemake-interface-executor-plugins = "^8.0.0"
snakemake-interface-common = "^1.14.0"
snakemake-interface-executor-plugins = "^8.1.0"

[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
Expand Down
2 changes: 1 addition & 1 deletion snakemake_executor_plugin_cluster_sync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def cancel_jobs(self, active_jobs: List[SubmittedJobInfo]):
self.logger.info("Will exit after finishing currently running jobs.")

def get_job_exec_prefix(self, job):
if self.workflow.storage_settings.assume_shared_fs:
if self.workflow.storage_settings.assume_common_workdir:
return f"cd {shlex.quote(self.workflow.workdir_init)}"
else:
return ""

0 comments on commit ddbebab

Please sign in to comment.