mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-09 23:31:13 -05:00
31 lines
953 B
Text
31 lines
953 B
Text
|
// Import generic module functions
|
||
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||
|
|
||
|
params.options = [:]
|
||
|
def options = initOptions(params.options)
|
||
|
|
||
|
process BOWTIE_INDEX {
|
||
|
tag "$fasta"
|
||
|
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:'') }
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::bowtie=1.3.0" : null)
|
||
|
container "quay.io/biocontainers/bowtie:1.3.0--py38hed8969a_1"
|
||
|
|
||
|
|
||
|
input:
|
||
|
path fasta
|
||
|
|
||
|
output:
|
||
|
path "*.index*" , emit: index
|
||
|
path "*.version.txt" , emit: version
|
||
|
|
||
|
script:
|
||
|
def software = getSoftwareName(task.process)
|
||
|
"""
|
||
|
bowtie-build --threads $task.cpus ${fasta} ${fasta.baseName}.index
|
||
|
bowtie --version | head -n 1 | cut -d" " -f3 > ${software}.version.txt
|
||
|
"""
|
||
|
}
|