mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 21:53:09 +00:00
Update the dev branch with the filtlong update
This commit is contained in:
parent
8082c7d108
commit
4a316df209
2 changed files with 8 additions and 1 deletions
4
modules/nf-core/modules/filtlong/main.nf
generated
4
modules/nf-core/modules/filtlong/main.nf
generated
|
@ -12,7 +12,8 @@ process FILTLONG {
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("*.fastq.gz"), emit: reads
|
tuple val(meta), path("*.fastq.gz"), emit: reads
|
||||||
path "versions.yml" , emit: versions
|
tuple val(meta), path("*.log") , emit: log
|
||||||
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
task.ext.when == null || task.ext.when
|
task.ext.when == null || task.ext.when
|
||||||
|
@ -27,6 +28,7 @@ process FILTLONG {
|
||||||
$short_reads \\
|
$short_reads \\
|
||||||
$args \\
|
$args \\
|
||||||
$longreads \\
|
$longreads \\
|
||||||
|
2> ${prefix}.log \\
|
||||||
| gzip -n > ${prefix}.fastq.gz
|
| gzip -n > ${prefix}.fastq.gz
|
||||||
|
|
||||||
cat <<-END_VERSIONS > versions.yml
|
cat <<-END_VERSIONS > versions.yml
|
||||||
|
|
5
modules/nf-core/modules/filtlong/meta.yml
generated
5
modules/nf-core/modules/filtlong/meta.yml
generated
|
@ -45,6 +45,11 @@ output:
|
||||||
type: file
|
type: file
|
||||||
description: Filtered (compressed) fastq file
|
description: Filtered (compressed) fastq file
|
||||||
pattern: "*.fastq.gz"
|
pattern: "*.fastq.gz"
|
||||||
|
- log:
|
||||||
|
type: file
|
||||||
|
description: Standard error logging file containing summary statistics
|
||||||
|
pattern: "*.log"
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- "@d4straub"
|
- "@d4straub"
|
||||||
|
- "@sofstam"
|
||||||
|
|
Loading…
Reference in a new issue