From 8b5476e273b22d559071abb26f8b36e9be1301ea Mon Sep 17 00:00:00 2001 From: chrstphtrs Date: Wed, 20 Sep 2023 19:33:44 +0200 Subject: [PATCH] Move all rule to main Snakefile --- Snakefile | 6 ++++++ rules/collect.smk | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Snakefile b/Snakefile index 0e783beb..4bdc40f3 100644 --- a/Snakefile +++ b/Snakefile @@ -46,6 +46,12 @@ wildcard_constraints: sector_opts="[-+a-zA-Z0-9\.\s]*", +rule all: + input: + RESULTS + "graphs/costs.pdf", + default_target: True + + include: "rules/common.smk" include: "rules/collect.smk" include: "rules/retrieve.smk" diff --git a/rules/collect.smk b/rules/collect.smk index 74f26ccb..0c713e5a 100644 --- a/rules/collect.smk +++ b/rules/collect.smk @@ -14,12 +14,6 @@ localrules: plot_networks, -rule all: - input: - RESULTS + "graphs/costs.pdf", - default_target: True - - rule cluster_networks: input: expand(RESOURCES + "networks/elec_s{simpl}_{clusters}.nc", **config["scenario"]),