From bb898bf69519c1b3c6454ff3248f2d42df543c2d Mon Sep 17 00:00:00 2001 From: Koen van Greevenbroek Date: Wed, 20 Mar 2024 15:40:07 +0100 Subject: [PATCH] Fix typo in reading input to build_sequestration_potentials rule Presumably needed since the transition to snakemake 8 storage providers --- scripts/build_sequestration_potentials.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_sequestration_potentials.py b/scripts/build_sequestration_potentials.py index 106c1271..2a362a77 100644 --- a/scripts/build_sequestration_potentials.py +++ b/scripts/build_sequestration_potentials.py @@ -44,7 +44,7 @@ if __name__ == "__main__": cf = snakemake.params.sequestration_potential - gdf = gpd.read_file(snakemake.input.sequestration_potential[0]) + gdf = gpd.read_file(snakemake.input.sequestration_potential) regions = gpd.read_file(snakemake.input.regions_offshore) if cf["include_onshore"]: