Skip to content
Snippets Groups Projects
main.nf 286 B
version = "1.7"
container_url = "lbmc/multiqc:${version}"

process multiqc {
  container = "${container_url}"
  label "big_mem_mono_cpus"
  publishDir "results/QC/", mode: 'copy'

  input:
    path report

  output:
    path "*multiqc_*", emit: report

  script:
"""
multiqc -f .
"""
}