2020-11-29 07:50:23 +00:00
|
|
|
name: MultiQC
|
|
|
|
description: Aggregate results from bioinformatics analyses across many samples into a single report
|
2020-11-23 13:01:55 +00:00
|
|
|
keywords:
|
2020-11-29 07:50:23 +00:00
|
|
|
- QC
|
|
|
|
- bioinformatics tools
|
|
|
|
- Beautiful stand-alone HTML report
|
2020-11-23 13:01:55 +00:00
|
|
|
tools:
|
2020-11-29 07:50:23 +00:00
|
|
|
- multiqc:
|
2020-11-23 13:01:55 +00:00
|
|
|
description: |
|
2020-11-29 07:50:23 +00:00
|
|
|
MultiQC searches a given directory for analysis logs and compiles a HTML report.
|
|
|
|
It's a general use tool, perfect for summarising the output from numerous bioinformatics tools.
|
|
|
|
homepage: https://multiqc.info/
|
|
|
|
documentation: https://multiqc.info/docs/
|
2020-11-23 13:01:55 +00:00
|
|
|
params:
|
|
|
|
- outdir:
|
|
|
|
type: string
|
|
|
|
description: |
|
|
|
|
The pipeline's output directory. By default, the module will
|
|
|
|
output files into `$params.outdir/<SOFTWARE>`
|
|
|
|
- publish_dir_mode:
|
|
|
|
type: string
|
|
|
|
description: |
|
|
|
|
Value for the Nextflow `publishDir` mode parameter.
|
|
|
|
Available: symlink, rellink, link, copy, copyNoFollow, move.
|
|
|
|
- enable_conda:
|
|
|
|
type: boolean
|
|
|
|
description: |
|
|
|
|
Run the module with Conda using the software specified
|
|
|
|
via the `conda` directive
|
2020-12-14 00:34:24 +00:00
|
|
|
- singularity_pull_docker_container:
|
|
|
|
type: boolean
|
|
|
|
description: |
|
|
|
|
Instead of directly downloading Singularity images for use with Singularity,
|
|
|
|
force the workflow to pull and convert Docker containers instead.
|
2020-11-23 13:01:55 +00:00
|
|
|
input:
|
2020-12-08 13:27:14 +00:00
|
|
|
- multiqc_files:
|
2020-11-23 13:01:55 +00:00
|
|
|
type: file
|
|
|
|
description: |
|
2020-12-08 13:27:14 +00:00
|
|
|
List of reports / files recognised by MultiQC, for example the html and zip output of FastQC
|
2020-11-23 13:01:55 +00:00
|
|
|
output:
|
2020-12-08 13:38:00 +00:00
|
|
|
- report:
|
|
|
|
type: file
|
|
|
|
description: MultiQC report file
|
|
|
|
pattern: "multiqc_report.html"
|
2020-12-08 13:27:14 +00:00
|
|
|
- data:
|
2020-11-29 07:50:23 +00:00
|
|
|
type: dir
|
|
|
|
description: MultiQC data dir
|
|
|
|
pattern: "multiqc_data"
|
2020-12-08 13:38:00 +00:00
|
|
|
- plots:
|
2020-11-23 13:01:55 +00:00
|
|
|
type: file
|
2020-12-08 13:38:00 +00:00
|
|
|
description: Plots created by MultiQC
|
|
|
|
pattern: "*_data"
|
2020-11-23 13:01:55 +00:00
|
|
|
- version:
|
|
|
|
type: file
|
|
|
|
description: File containing software version
|
|
|
|
pattern: "*.{version.txt}"
|
|
|
|
authors:
|
2020-11-29 07:50:23 +00:00
|
|
|
- "@abhi18av"
|
|
|
|
- "@bunop"
|
2020-12-08 13:38:00 +00:00
|
|
|
- "@drpatelh"
|