From d4d517ffab99d4e9a02389b4fb9f96a870b25d5d Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Wed, 8 Mar 2023 18:45:32 +0100 Subject: [PATCH] Snakefile: correct indent --- Snakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Snakefile b/Snakefile index f8a56585..17823ac5 100644 --- a/Snakefile +++ b/Snakefile @@ -76,8 +76,8 @@ rule dag: 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} - """ \ No newline at end of file + """ + snakemake --rulegraph all | sed -n "/digraph/,\$p" > {output.dot} + dot -Tpdf -o {output.pdf} {output.dot} + dot -Tpng -o {output.png} {output.dot} + """ \ No newline at end of file