From 1185983f8f110b6cb6b7e2db35351db384db9e0c Mon Sep 17 00:00:00 2001 From: Fabian Hofmann Date: Thu, 8 Sep 2022 20:32:22 +0200 Subject: [PATCH] Update Snakefile Co-authored-by: Philipp Glaum <95913147+p-glaum@users.noreply.github.com> --- Snakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snakefile b/Snakefile index 3d0c30bd..b841eba9 100644 --- a/Snakefile +++ b/Snakefile @@ -15,7 +15,7 @@ configfile: "config.yaml" run = config.get("run", {}) RDIR = run.get("name", "") + "/" if run.get("name", "") else "" -CDIR = "" if run.get("dedicated_cutouts", True) else RDIR +CDIR = RDIR if run.get("dedicated_cutouts", True) else "" COSTS = "resources/" + RDIR + "costs.csv" ATLITE_NPROCESSES = config['atlite'].get('nprocesses', 4)