1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-11-13 07:03:10 +00:00

Triple patch combo!

This commit is contained in:
James Fellows Yates 2023-01-25 15:02:02 +01:00
parent f63cec3473
commit a77a437313
2 changed files with 5 additions and 3 deletions

View file

@ -23,7 +23,8 @@ process PORECHOP_PORECHOP {
def prefix = task.ext.prefix ?: "${meta.id}"
"""
## To ensure ID matches rest of pipeline based on meta.id rather than input file name
ln -s $reads ${prefix}.fastq.gz
[[ -f ${prefix}.fastq.gz ]] || ln -s $reads ${prefix}.fastq.gz
porechop \\
-i ${prefix}.fastq.gz \\

View file

@ -10,12 +10,13 @@ Changes in module 'nf-core/porechop/porechop'
tuple val(meta), path("*.log") , emit: log
path "versions.yml" , emit: versions
@@ -22,12 +22,16 @@
@@ -22,12 +22,17 @@
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
"""
+ ## To ensure ID matches rest of pipeline based on meta.id rather than input file name
+ ln -s $reads ${prefix}.fastq.gz
+
+ [[ -f ${prefix}.fastq.gz ]] || ln -s $reads ${prefix}.fastq.gz
+
porechop \\
- -i $reads \\