From ed83988ed1fbc2b064cf5d2868965be9921bd12f Mon Sep 17 00:00:00 2001 From: Philipp Glaum Date: Wed, 15 Dec 2021 11:02:03 +0100 Subject: [PATCH] hot fix for snakemake bug --- scripts/_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_helpers.py b/scripts/_helpers.py index 30775ae5..f1e5e887 100644 --- a/scripts/_helpers.py +++ b/scripts/_helpers.py @@ -240,7 +240,7 @@ def mock_snakemake(rulename, **wildcards): if os.path.exists(p): snakefile = p break - workflow = sm.Workflow(snakefile) + workflow = sm.Workflow(snakefile, overwrite_configfiles=[]) workflow.include(snakefile) workflow.global_resources = {} rule = workflow.get_rule(rulename)