From 2f99203b5955743bb8dd834a45dd60bb32b69ef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Fri, 25 Feb 2022 17:05:33 +0100 Subject: [PATCH] fix: do not require --cores or --jobs to be set when --cleanup-metadata is used. --- 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)