2020-11-23 08:01:55 -05:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 08:16:43 -04:00
|
|
|
options = initOptions(params.options)
|
2020-11-23 08:01:55 -05:00
|
|
|
|
2020-11-29 02:50:23 -05:00
|
|
|
process MULTIQC {
|
2020-11-23 08:01:55 -05:00
|
|
|
label 'process_medium'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2020-12-04 01:41:17 -05:00
|
|
|
saveAs: { filename -> saveFiles(filename: filename, options: params.options, publish_dir: getSoftwareName(task.process), publish_id: '') }
|
2020-11-23 08:01:55 -05:00
|
|
|
|
2021-02-16 18:58:23 -05:00
|
|
|
conda (params.enable_conda ? "bioconda::multiqc=1.9" : null)
|
2020-12-13 19:05:48 -05:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/multiqc:1.9--pyh9f0ad1d_0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/multiqc:1.9--pyh9f0ad1d_0"
|
|
|
|
}
|
2020-11-23 08:01:55 -05:00
|
|
|
|
|
|
|
input:
|
2020-12-08 08:27:14 -05:00
|
|
|
path multiqc_files
|
2020-11-23 08:01:55 -05:00
|
|
|
|
|
|
|
output:
|
2020-12-02 02:08:41 -05:00
|
|
|
path "*multiqc_report.html", emit: report
|
2020-12-08 08:27:14 -05:00
|
|
|
path "*_data" , emit: data
|
|
|
|
path "*_plots" , optional:true, emit: plots
|
|
|
|
path "*.version.txt" , emit: version
|
2020-11-23 08:01:55 -05:00
|
|
|
|
|
|
|
script:
|
2020-12-08 08:27:14 -05:00
|
|
|
def software = getSoftwareName(task.process)
|
2020-11-29 02:50:23 -05:00
|
|
|
"""
|
2020-12-08 08:38:00 -05:00
|
|
|
multiqc -f $options.args .
|
|
|
|
multiqc --version | sed -e "s/multiqc, version //g" > ${software}.version.txt
|
2020-11-29 02:50:23 -05:00
|
|
|
"""
|
2020-11-23 08:01:55 -05:00
|
|
|
}
|