2023-04-28 14:26:38 +00:00
|
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/modules/yaml-schema.json
|
2022-02-18 06:55:14 +00:00
|
|
|
name: MultiQC
|
|
|
|
description: Aggregate results from bioinformatics analyses across many samples into a single report
|
|
|
|
keywords:
|
2022-03-23 13:57:56 +00:00
|
|
|
- QC
|
|
|
|
- bioinformatics tools
|
|
|
|
- Beautiful stand-alone HTML report
|
2022-02-18 06:55:14 +00:00
|
|
|
tools:
|
2022-03-23 13:57:56 +00:00
|
|
|
- multiqc:
|
|
|
|
description: |
|
|
|
|
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/
|
|
|
|
licence: ["GPL-3.0-or-later"]
|
2022-10-05 03:30:53 +00:00
|
|
|
|
2022-02-18 06:55:14 +00:00
|
|
|
input:
|
2022-03-23 13:57:56 +00:00
|
|
|
- multiqc_files:
|
|
|
|
type: file
|
|
|
|
description: |
|
|
|
|
List of reports / files recognised by MultiQC, for example the html and zip output of FastQC
|
2022-10-05 03:30:53 +00:00
|
|
|
- multiqc_config:
|
|
|
|
type: file
|
|
|
|
description: Optional config yml for MultiQC
|
|
|
|
pattern: "*.{yml,yaml}"
|
|
|
|
- extra_multiqc_config:
|
|
|
|
type: file
|
|
|
|
description: Second optional config yml for MultiQC. Will override common sections in multiqc_config.
|
|
|
|
pattern: "*.{yml,yaml}"
|
|
|
|
- multiqc_logo:
|
|
|
|
type: file
|
|
|
|
description: Optional logo file for MultiQC
|
|
|
|
pattern: "*.{png}"
|
|
|
|
|
2022-02-18 06:55:14 +00:00
|
|
|
output:
|
2022-03-23 13:57:56 +00:00
|
|
|
- report:
|
|
|
|
type: file
|
|
|
|
description: MultiQC report file
|
|
|
|
pattern: "multiqc_report.html"
|
|
|
|
- data:
|
2023-04-28 14:26:38 +00:00
|
|
|
type: directory
|
2022-03-23 13:57:56 +00:00
|
|
|
description: MultiQC data dir
|
|
|
|
pattern: "multiqc_data"
|
|
|
|
- plots:
|
|
|
|
type: file
|
|
|
|
description: Plots created by MultiQC
|
|
|
|
pattern: "*_data"
|
|
|
|
- versions:
|
|
|
|
type: file
|
|
|
|
description: File containing software versions
|
|
|
|
pattern: "versions.yml"
|
2022-02-18 06:55:14 +00:00
|
|
|
authors:
|
2022-03-23 13:57:56 +00:00
|
|
|
- "@abhi18av"
|
|
|
|
- "@bunop"
|
|
|
|
- "@drpatelh"
|
2022-10-05 03:30:53 +00:00
|
|
|
- "@jfy133"
|