Fix network directory path in make_summary

This commit is contained in:
Adrian Odenweller 2022-10-25 14:29:07 +02:00
parent 041abadf3c
commit 73b0645c13

View File

@ -556,9 +556,9 @@ if __name__ == "__main__":
opts="Co2L-24H",
country="all",
)
network_dir = os.path.join("..", "results", "networks")
network_dir = os.path.join("..", "results", "networks", snakemake.config["run"]["name"])
else:
network_dir = os.path.join("results", "networks")
network_dir = os.path.join("results", "networks", snakemake.config["run"]["name"])
configure_logging(snakemake)
config = snakemake.config