move load_raw.csv to resources since it's config file dependent

This commit is contained in:
Fabian Neumann 2023-11-29 13:41:26 +01:00
parent 7ca769bcf0
commit 803b860923
4 changed files with 4 additions and 4 deletions

View File

@ -91,7 +91,7 @@ None.
**Outputs**
- ``data/load_raw.csv``
- ``resources/load_raw.csv``
Rule ``retrieve_cost_data``

View File

@ -24,7 +24,7 @@ rule build_electricity_demand:
countries=config["countries"],
load=config["load"],
input:
ancient("data/load_raw.csv"),
ancient(RESOURCES + "load_raw.csv"),
output:
RESOURCES + "load.csv",
log:

View File

@ -195,7 +195,7 @@ if config["enable"]["retrieve"]:
static=True,
),
output:
"data/load_raw.csv",
RESOURCES + "load_raw.csv",
log:
LOGS + "retrieve_electricity_demand.log",
resources:

View File

@ -31,7 +31,7 @@ Relevant Settings
Inputs
------
- ``data/load_raw.csv``:
- ``resources/load_raw.csv``:
Outputs
-------