only copy config.default.yaml if it exists
This commit is contained in:
parent
c237862c02
commit
1a6031f318
@ -14,7 +14,7 @@ from snakemake.utils import min_version
|
|||||||
min_version("7.7")
|
min_version("7.7")
|
||||||
|
|
||||||
|
|
||||||
if not exists("config/config.yaml"):
|
if not exists("config/config.yaml") and exists("config/config.default.yaml"):
|
||||||
copyfile("config/config.default.yaml", "config/config.yaml")
|
copyfile("config/config.default.yaml", "config/config.yaml")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user