mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
835ac48565
* fix multiqc process * fix multiqc tests * move multiqc test input data into tests/data/fastqc/ folder Move input tests data into tests/data/fastqc/ and linking those files into software/multiqc/test/input/ as stated from the project documentation * add multiqc github workflow * remove unused file * generalize multiqc input data User must collect all desidered files in a channel (as described in https://seqera.io/training/#_multiqc_report * update meta information
50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
name: MultiQC
|
|
description: Aggregate results from bioinformatics analyses across many samples into a single report
|
|
keywords:
|
|
- QC
|
|
- bioinformatics tools
|
|
- Beautiful stand-alone HTML report
|
|
tools:
|
|
- 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/
|
|
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
|
|
input:
|
|
- generic_report:
|
|
type: file
|
|
description: |
|
|
List of report, for example the html and zip output of FastQC
|
|
output:
|
|
- dir:
|
|
type: dir
|
|
description: MultiQC data dir
|
|
pattern: "multiqc_data"
|
|
- html:
|
|
type: file
|
|
description: MultiQC report file
|
|
pattern: "multiqc_report.html"
|
|
- version:
|
|
type: file
|
|
description: File containing software version
|
|
pattern: "*.{version.txt}"
|
|
authors:
|
|
- "@abhi18av"
|
|
- "@bunop"
|