mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
44 lines
1 KiB
YAML
44 lines
1 KiB
YAML
|
name: fastqscan
|
||
|
description: FASTQ summary statistics in JSON format
|
||
|
keywords:
|
||
|
- fastq
|
||
|
- summary
|
||
|
- statistics
|
||
|
tools:
|
||
|
- fastqscan:
|
||
|
description: FASTQ summary statistics in JSON format
|
||
|
homepage: https://github.com/rpetit3/fastq-scan
|
||
|
documentation: https://github.com/rpetit3/fastq-scan
|
||
|
tool_dev_url: https://github.com/rpetit3/fastq-scan
|
||
|
doi: ""
|
||
|
licence: ['MIT']
|
||
|
|
||
|
input:
|
||
|
- meta:
|
||
|
type: map
|
||
|
description: |
|
||
|
Groovy Map containing sample information
|
||
|
e.g. [ id:'test', single_end:false ]
|
||
|
- reads:
|
||
|
type: file
|
||
|
description: FASTQ file
|
||
|
pattern: "*.{fastq.gz,fq.gz}"
|
||
|
|
||
|
output:
|
||
|
- meta:
|
||
|
type: map
|
||
|
description: |
|
||
|
Groovy Map containing sample information
|
||
|
e.g. [ id:'test', single_end:false ]
|
||
|
- versions:
|
||
|
type: file
|
||
|
description: File containing software versions
|
||
|
pattern: "versions.yml"
|
||
|
- json:
|
||
|
type: file
|
||
|
description: JSON formatted file of summary statistics
|
||
|
pattern: "*.json"
|
||
|
|
||
|
authors:
|
||
|
- "@rpetit3"
|