mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Faqcs patch (#1367)
* faqcs update to capture debug output * change paths Co-authored-by: Cipriano <rrn8@cdc.gov>
This commit is contained in:
parent
4983f77796
commit
2cd502a236
2 changed files with 5 additions and 0 deletions
|
@ -13,6 +13,7 @@ process FAQCS {
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path('*.trimmed.fastq.gz') , emit: reads
|
tuple val(meta), path('*.trimmed.fastq.gz') , emit: reads
|
||||||
tuple val(meta), path('*.stats.txt') , emit: stats
|
tuple val(meta), path('*.stats.txt') , emit: stats
|
||||||
|
tuple val(meta), path('*.txt') , optional:true, emit: txt
|
||||||
tuple val(meta), path('*_qc_report.pdf') , optional:true, emit: statspdf
|
tuple val(meta), path('*_qc_report.pdf') , optional:true, emit: statspdf
|
||||||
tuple val(meta), path('*.log') , emit: log
|
tuple val(meta), path('*.log') , emit: log
|
||||||
tuple val(meta), path('*.discard.fastq.gz') , optional:true, emit: reads_fail
|
tuple val(meta), path('*.discard.fastq.gz') , optional:true, emit: reads_fail
|
||||||
|
|
|
@ -54,6 +54,10 @@ output:
|
||||||
type: file
|
type: file
|
||||||
description: trimming/qc text stats file
|
description: trimming/qc text stats file
|
||||||
pattern: "*.stats.txt"
|
pattern: "*.stats.txt"
|
||||||
|
- txt:
|
||||||
|
type: file
|
||||||
|
description: trimming/qc text txt files from --debug option
|
||||||
|
pattern: "*.txt"
|
||||||
- statspdf:
|
- statspdf:
|
||||||
type: file
|
type: file
|
||||||
description: trimming/qc pdf report file
|
description: trimming/qc pdf report file
|
||||||
|
|
Loading…
Reference in a new issue