mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Apply suggestions from code review
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
This commit is contained in:
parent
fee0707af1
commit
560a6a578b
1 changed files with 15 additions and 12 deletions
|
@ -19,21 +19,24 @@ process BOWTIE_ALIGN {
|
|||
path index
|
||||
|
||||
output:
|
||||
tuple val(meta), path("*.sam") , emit: sam
|
||||
tuple val(meta), path("*.out") , emit: log
|
||||
tuple val(meta), path("*.sam"), emit: sam
|
||||
tuple val(meta), path("*.out"), emit: log
|
||||
path "bowtie.version.txt" , emit: version
|
||||
|
||||
script:
|
||||
def software = getSoftwareName(task.process)
|
||||
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
||||
index_array = index.collect()
|
||||
index = index_array[0].baseName - ~/.\d$/
|
||||
def unaligned = params.save_unaligned ? "--un ${prefix}.unmapped" : ''
|
||||
"""
|
||||
bowtie $options.args \\
|
||||
INDEX=`find -L ./ -name "*.1.ebwt" | sed 's/.1.ebwt//'`
|
||||
bowtie \\
|
||||
--threads $task.cpus \\
|
||||
${index} \\
|
||||
$options.args \\
|
||||
$INDEX \\
|
||||
-q ${reads} \\
|
||||
--un ${prefix}.unAl > ${prefix}.sam 2> ${prefix}.out
|
||||
$unaligned \\
|
||||
> ${prefix}.sam 2> ${prefix}.out
|
||||
|
||||
bowtie --version | head -n 1 | cut -d" " -f3 > ${software}.version.txt
|
||||
"""
|
||||
}
|
Loading…
Reference in a new issue