Skip to content
Snippets Groups Projects
Forked from LBMC / nextflow
1133 commits behind, 31 commits ahead of the upstream repository.
multiqc.nf 391 B
/*
* multiqc :
* Imputs : report files
* Output :  multiqc report
*/

/*                      MultiQC                                     */

process multiqc {
  tag "$report.baseName"
  publishDir "results/fastq/multiqc/", mode: 'copy'
  cpus = 1

  input:
    file report from fastqc_report.collect()

  output:
    file "*multiqc_*" into multiqc_report

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