nf-core_modules/software/fastqc/meta.yml

54 lines
1.6 KiB
YAML
Raw Normal View History

2020-08-06 23:50:49 +00:00
name: fastqc
2019-12-05 14:18:09 +00:00
description: Run FastQC on sequenced reads
keywords:
2020-07-15 08:16:48 +00:00
- Quality Control
- QC
- Adapters
2019-12-05 14:18:09 +00:00
tools:
2020-07-15 08:16:48 +00:00
- fastqc:
description: |
FastQC gives general quality metrics about your reads.
It provides information about the quality score distribution
across your reads, the per base sequence content (%A/C/G/T).
You get information about adapter contamination and other
overrepresented sequences.
homepage: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/
documentation: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/Help/
params:
2020-08-06 23:50:49 +00:00
- outdir:
2020-07-15 08:16:48 +00:00
type: string
description: |
The pipeline's output directory. By default, the module will
2020-08-06 23:50:49 +00:00
output files into `$params.outdir/<SOFTWARE>`
2020-07-15 08:16:48 +00:00
- publish_dir_mode:
type: string
description: |
2020-08-06 23:50:49 +00:00
Value for the Nextflow `publishDir` mode parameter.
Available: symlink, rellink, link, copy, copyNoFollow, move.
- conda:
type: boolean
description: |
2020-08-06 23:50:49 +00:00
Run the module with Conda using the software specified
via the `conda` directive
2019-12-05 14:18:09 +00:00
input:
2020-08-06 23:50:49 +00:00
- meta:
type: map
description: |
2020-08-06 23:50:49 +00:00
Groovy Map containing sample information
e.g. [ id:'test', single_end:false ]
2020-07-15 08:16:48 +00:00
- reads:
type: file
description: |
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
respectively.
2019-12-05 14:18:09 +00:00
output:
2020-07-15 08:16:48 +00:00
- report:
type: file
description: FastQC report
pattern: "*_fastqc.{zip,html}"
2019-12-05 14:18:09 +00:00
authors:
- "@drpatelh"
2020-08-06 23:50:49 +00:00
- "@grst"
2020-07-15 08:16:48 +00:00
- "@ewels"
- "@FelixKrueger"