From a8f85ddddda2e667e8f56a351627395654e4410c Mon Sep 17 00:00:00 2001 From: mirpedrol Date: Wed, 9 Oct 2024 11:42:00 +0200 Subject: [PATCH] skip nested double quotes --- subworkflows/nf-core/utils_nfcore_pipeline/main.nf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subworkflows/nf-core/utils_nfcore_pipeline/main.nf b/subworkflows/nf-core/utils_nfcore_pipeline/main.nf index 8cda47bcff3..b78273ca4c1 100644 --- a/subworkflows/nf-core/utils_nfcore_pipeline/main.nf +++ b/subworkflows/nf-core/utils_nfcore_pipeline/main.nf @@ -128,12 +128,12 @@ def paramsSummaryMultiqc(summary_params) { // This gets the parameters of that particular group if (group_params) { summary_section += "

${group}

\n" - summary_section += "
\n" + summary_section += "
\n" group_params .keySet() .sort() .each { param -> - summary_section += "
${param}
${group_params.get(param) ?: 'N/A'}
\n" + summary_section += "
${param}
${group_params.get(param) ?: 'N/A'}
\n" } summary_section += "
\n" }