add message for dag rule
This commit is contained in:
parent
76dcf43993
commit
6763dbaacc
23
Snakefile
23
Snakefile
@ -69,14 +69,15 @@ rule purge:
|
||||
|
||||
|
||||
rule dag:
|
||||
output:
|
||||
dot=RESOURCES + "dag.dot",
|
||||
pdf=RESOURCES + "dag.pdf",
|
||||
png=RESOURCES + "dag.png"
|
||||
conda: "envs/environment.yaml"
|
||||
shell:
|
||||
"""
|
||||
snakemake --rulegraph all | sed -n "/digraph/,\$p" > {output.dot}
|
||||
dot -Tpdf -o {output.pdf} {output.dot}
|
||||
dot -Tpng -o {output.png} {output.dot}
|
||||
"""
|
||||
message: "Creating DAG of workflow."
|
||||
output:
|
||||
dot=RESOURCES + "dag.dot",
|
||||
pdf=RESOURCES + "dag.pdf",
|
||||
png=RESOURCES + "dag.png"
|
||||
conda: "envs/environment.yaml"
|
||||
shell:
|
||||
"""
|
||||
snakemake --rulegraph all | sed -n "/digraph/,\$p" > {output.dot}
|
||||
dot -Tpdf -o {output.pdf} {output.dot}
|
||||
dot -Tpng -o {output.png} {output.dot}
|
||||
"""
|
Loading…
Reference in New Issue
Block a user