mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
fix fastp to allow exporting of only *.merged.fastq.gz
(#1325)
* fix: remove left-over unnecessary code * Update main.nf * Update meta.yml
This commit is contained in:
parent
e31f1ff3b1
commit
d0a1cbb703
2 changed files with 7 additions and 1 deletions
|
@ -13,7 +13,7 @@ process FASTP {
|
||||||
val save_merged
|
val save_merged
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path('*.trim.fastq.gz') , emit: reads
|
tuple val(meta), path('*.trim.fastq.gz') , optional:true, emit: reads
|
||||||
tuple val(meta), path('*.json') , emit: json
|
tuple val(meta), path('*.json') , emit: json
|
||||||
tuple val(meta), path('*.html') , emit: html
|
tuple val(meta), path('*.html') , emit: html
|
||||||
tuple val(meta), path('*.log') , emit: log
|
tuple val(meta), path('*.log') , emit: log
|
||||||
|
|
|
@ -22,6 +22,12 @@ input:
|
||||||
description: |
|
description: |
|
||||||
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
|
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
|
||||||
respectively.
|
respectively.
|
||||||
|
- save_trimmed_fail:
|
||||||
|
type: boolean
|
||||||
|
description: Specify true to save files that failed to pass trimming thresholds ending in `*.fail.fastq.gz`
|
||||||
|
- save_merged:
|
||||||
|
type: boolean
|
||||||
|
description: Specify true to save all merged reads to the a file ending in `*.merged.fastq.gz`
|
||||||
|
|
||||||
output:
|
output:
|
||||||
- meta:
|
- meta:
|
||||||
|
|
Loading…
Reference in a new issue