From f5df0dadda0802d628051765b0249f08a477fb38 Mon Sep 17 00:00:00 2001 From: Luis Kress <35309241+LKress@users.noreply.github.com> Date: Wed, 26 Aug 2026 14:52:39 +0200 Subject: [PATCH] fix: Correct copied config file name * This file contains the infomation with which parameters the workflow was run --- workflow/Snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/Snakefile b/workflow/Snakefile index f037d9d..c409bba 100644 --- a/workflow/Snakefile +++ b/workflow/Snakefile @@ -91,7 +91,7 @@ onstart: # write the config to the output directory for reproducibility if not os.path.exists("configs"): os.mkdir("configs") - with open(f"configs/{timestamp}_pull_resources_config.yaml", "w") as configfile: + with open(f"configs/{timestamp}_config.yaml", "w") as configfile: yaml.dump(config, configfile, default_flow_style=False)