Merge pull request #435 from aodenweller/bugfix_make_summary
Fix network directory path in make_summary
This commit is contained in:
commit
6d13b40ab7
@ -556,9 +556,13 @@ if __name__ == "__main__":
|
|||||||
opts="Co2L-24H",
|
opts="Co2L-24H",
|
||||||
country="all",
|
country="all",
|
||||||
)
|
)
|
||||||
network_dir = os.path.join("..", "results", "networks")
|
network_dir = os.path.join(
|
||||||
|
"..", "results", "networks", snakemake.config["run"]["name"]
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
network_dir = os.path.join("results", "networks")
|
network_dir = os.path.join(
|
||||||
|
"results", "networks", snakemake.config["run"]["name"]
|
||||||
|
)
|
||||||
configure_logging(snakemake)
|
configure_logging(snakemake)
|
||||||
|
|
||||||
config = snakemake.config
|
config = snakemake.config
|
||||||
|
Loading…
Reference in New Issue
Block a user