diff --git a/src/nf_modules/multiqc/main.nf b/src/nf_modules/multiqc/main.nf new file mode 100644 index 0000000000000000000000000000000000000000..1a3efda7065f61abf709171533c9406c0d500890 --- /dev/null +++ b/src/nf_modules/multiqc/main.nf @@ -0,0 +1,20 @@ +version = "1.7" +container_url = "lbmc/multiqc:${version}" + +process multiqc { + container = "${container_url}" + label "big_mem_mono_cpus" + tag "$report[0].baseName" + publishDir "results/QC/multiqc/", mode: 'copy' + + input: + path report + + output: + path "*multiqc_*", emit: report + + script: +""" +multiqc -f . +""" +}