mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 05:49:56 +00:00
Triple patch combo!
This commit is contained in:
parent
f63cec3473
commit
a77a437313
2 changed files with 5 additions and 3 deletions
3
modules/nf-core/porechop/porechop/main.nf
generated
3
modules/nf-core/porechop/porechop/main.nf
generated
|
@ -23,7 +23,8 @@ process PORECHOP_PORECHOP {
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
"""
|
"""
|
||||||
## To ensure ID matches rest of pipeline based on meta.id rather than input file name
|
## 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 \\
|
porechop \\
|
||||||
-i ${prefix}.fastq.gz \\
|
-i ${prefix}.fastq.gz \\
|
||||||
|
|
|
@ -10,12 +10,13 @@ Changes in module 'nf-core/porechop/porechop'
|
||||||
tuple val(meta), path("*.log") , emit: log
|
tuple val(meta), path("*.log") , emit: log
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
@@ -22,12 +22,16 @@
|
@@ -22,12 +22,17 @@
|
||||||
def args = task.ext.args ?: ''
|
def args = task.ext.args ?: ''
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
"""
|
"""
|
||||||
+ ## To ensure ID matches rest of pipeline based on meta.id rather than input file name
|
+ ## 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 \\
|
porechop \\
|
||||||
- -i $reads \\
|
- -i $reads \\
|
||||||
|
|
Loading…
Reference in a new issue