mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
allow fq.gz or gastq.gz as in/output
This commit is contained in:
parent
12137d6f3e
commit
4e9d728108
2 changed files with 3 additions and 4 deletions
|
@ -24,7 +24,7 @@ process SEQKIT_SPLIT2 {
|
|||
tuple val(meta), path(reads)
|
||||
|
||||
output:
|
||||
tuple val(meta), path("*.split/*.fastq.gz"), emit: reads
|
||||
tuple val(meta), path("*.split/*.gz"), emit: reads
|
||||
path("*.version.txt") , emit: version
|
||||
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@ tools:
|
|||
homepage: https://github.com/shenwei356/seqkit
|
||||
documentation: https://bioinf.shenwei.me/seqkit/
|
||||
doi: 10.1371/journal.pone.0163962
|
||||
## TODO nf-core: If you are using any additional "params" in the main.nf script of the module add them below
|
||||
params:
|
||||
- outdir:
|
||||
type: string
|
||||
|
@ -42,7 +41,7 @@ input:
|
|||
- reads:
|
||||
type: file
|
||||
description: FastQ files
|
||||
pattern: "*.fastq.gz"
|
||||
pattern: "*.{fq.gz/fastq.gz}"
|
||||
## TODO nf-core: Add a description of all of the variables used as output
|
||||
output:
|
||||
- meta:
|
||||
|
@ -53,7 +52,7 @@ output:
|
|||
- reads:
|
||||
type: file
|
||||
description: Split fastq files
|
||||
pattern: "*.fastq.gz"
|
||||
pattern: "*.{fq.gz/fastq.gz}"
|
||||
- version:
|
||||
type: file
|
||||
description: File containing software version
|
||||
|
|
Loading…
Reference in a new issue