1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 10:42:03 +00:00

Actually patch the patch

This commit is contained in:
James Fellows Yates 2023-01-25 14:58:19 +01:00
parent d761edb615
commit f63cec3473

View file

@ -1,6 +1,15 @@
Changes in module 'nf-core/porechop/porechop' Changes in module 'nf-core/porechop/porechop'
--- modules/nf-core/porechop/porechop/main.nf --- modules/nf-core/porechop/porechop/main.nf
+++ modules/nf-core/porechop/porechop/main.nf +++ modules/nf-core/porechop/porechop/main.nf
@@ -11,7 +11,7 @@
tuple val(meta), path(reads)
output:
- tuple val(meta), path("*.fastq.gz"), emit: reads
+ tuple val(meta), path("*_porechopped.fastq.gz"), emit: reads
tuple val(meta), path("*.log") , emit: log
path "versions.yml" , emit: versions
@@ -22,12 +22,16 @@ @@ -22,12 +22,16 @@
def args = task.ext.args ?: '' def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}" def prefix = task.ext.prefix ?: "${meta.id}"