mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
560a6a578b
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
42 lines
1.3 KiB
Text
42 lines
1.3 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
def options = initOptions(params.options)
|
|
|
|
process BOWTIE_ALIGN {
|
|
tag "$meta.id"
|
|
label 'process_high'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
conda (params.enable_conda ? "bioconda::bowtie=1.3.0" : null)
|
|
container "quay.io/biocontainers/bowtie:1.3.0--py38hed8969a_1"
|
|
|
|
input:
|
|
tuple val(meta), path(reads)
|
|
path index
|
|
|
|
output:
|
|
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}"
|
|
def unaligned = params.save_unaligned ? "--un ${prefix}.unmapped" : ''
|
|
"""
|
|
INDEX=`find -L ./ -name "*.1.ebwt" | sed 's/.1.ebwt//'`
|
|
bowtie \\
|
|
--threads $task.cpus \\
|
|
$options.args \\
|
|
$INDEX \\
|
|
-q ${reads} \\
|
|
$unaligned \\
|
|
> ${prefix}.sam 2> ${prefix}.out
|
|
|
|
bowtie --version | head -n 1 | cut -d" " -f3 > ${software}.version.txt
|
|
"""
|
|
}
|