From 3aaea4699b349842d759e2a520d64dfc7c6af16e Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Mon, 13 May 2024 14:50:38 +0200 Subject: [PATCH] fix missed renaming of mode to policy --- Snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snakefile b/Snakefile index 9807c673..412d520d 100644 --- a/Snakefile +++ b/Snakefile @@ -24,7 +24,7 @@ run = config["run"] scenarios = get_scenarios(run) RDIR = get_rdir(run) -shared_resources = run["shared_resources"]["mode"] +shared_resources = run["shared_resources"]["policy"] exclude_from_shared = run["shared_resources"]["exclude"] logs = path_provider("logs/", RDIR, shared_resources, exclude_from_shared) benchmarks = path_provider("benchmarks/", RDIR, shared_resources, exclude_from_shared)