From 9c739079bf3e6340facaa03f88f757df36f6dd91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Fri, 25 Feb 2022 18:14:39 +0100 Subject: [PATCH] fix: do not require --cores or --jobs to be set when --cleanup-metadata is used. (#1429) --- snakemake/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/snakemake/__init__.py b/snakemake/__init__.py index 876d48192..0a6106a98 100644 --- a/snakemake/__init__.py +++ b/snakemake/__init__.py @@ -2512,6 +2512,7 @@ def adjust_path(f): or args.gui or args.archive or args.unlock + or args.cleanup_metadata ) local_exec = not (no_exec or non_local_exec)