2019-12-05 14:18:09 +00:00
|
|
|
name: FastQC
|
|
|
|
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-07-15 09:00:07 +00:00
|
|
|
- fastqc_args:
|
|
|
|
type: string
|
|
|
|
description: Additional command line arguments passed to fastqc.
|
2020-07-15 08:16:48 +00:00
|
|
|
- out_dir:
|
|
|
|
type: string
|
|
|
|
description: |
|
|
|
|
The pipeline's output directory. By default, the module will
|
2020-07-15 10:47:30 +00:00
|
|
|
output files into `$out_dir/MODULE_NAME`
|
2020-07-15 10:47:19 +00:00
|
|
|
- publish_dir:
|
2020-07-15 08:16:48 +00:00
|
|
|
type: string
|
|
|
|
description: |
|
2020-07-15 10:47:42 +00:00
|
|
|
Append to the path for the standard output directory provided by `$out_dir`.
|
2020-07-15 08:16:48 +00:00
|
|
|
- publish_dir_mode:
|
|
|
|
type: string
|
2020-07-15 11:00:10 +00:00
|
|
|
description: |
|
|
|
|
Provide a value for the Nextflow `publishDir` mode parameter
|
|
|
|
(e.g. copy, link, ...)
|
|
|
|
- publish_results:
|
|
|
|
type: string
|
|
|
|
description: |
|
|
|
|
Whether or not to publish results into `publish_dir`. Set to `none` to not
|
|
|
|
publish any files at all; to `default` to publish all relevant files.
|
2019-12-05 14:18:09 +00:00
|
|
|
input:
|
2020-07-15 08:16:48 +00:00
|
|
|
- name:
|
|
|
|
type: string
|
|
|
|
description: Sample identifier
|
2020-07-15 11:00:10 +00:00
|
|
|
- single_end:
|
|
|
|
type: boolean
|
|
|
|
description: |
|
|
|
|
Boolean indicating whether the corresponding sample is single-end (true)
|
|
|
|
or paired-end (false).
|
2020-07-15 08:16:48 +00:00
|
|
|
- reads:
|
|
|
|
type: file
|
2020-07-15 11:00:10 +00:00
|
|
|
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:
|
2020-07-15 09:00:07 +00:00
|
|
|
- "@grst"
|
2020-07-15 10:48:11 +00:00
|
|
|
- "@drpatelh"
|
2020-07-15 08:16:48 +00:00
|
|
|
- "@ewels"
|
|
|
|
- "@FelixKrueger"
|