From d0d90c3ba53ee59c1a210d5c89b94b66d9072191 Mon Sep 17 00:00:00 2001 From: burri0000 <dominik.burri@unibas.ch> Date: Fri, 16 Jul 2021 16:20:39 +0200 Subject: [PATCH] surround params in multiqc prepration; fixes #180 --- workflow/Snakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workflow/Snakefile b/workflow/Snakefile index d5ac1ea..ee50d8b 100644 --- a/workflow/Snakefile +++ b/workflow/Snakefile @@ -1579,10 +1579,10 @@ rule prepare_multiqc_config: "(python {input.script} \ --config {output.multiqc_config} \ --intro-text '{params.multiqc_intro_text}' \ - --custom-logo {params.logo_path} \ + --custom-logo '{params.logo_path}' \ --url '{params.url}' \ - --author-name {params.author_name} \ - --author-email {params.author_email} \ + --author-name '{params.author_name}' \ + --author-email '{params.author_email}' \ {params.additional_params}) \ 1> {log.stdout} 2> {log.stderr}" -- GitLab