nf-core_modules/software/bowtie/index/main.nf

36 lines
1.2 KiB
Text
Raw Normal View History

2020-12-08 11:57:00 +00:00
// 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:'') }
2020-12-17 09:24:48 +00:00
conda (params.enable_conda ? 'bioconda::bowtie=1.3.0' : null)
2020-12-17 06:33:44 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
2020-12-17 09:24:48 +00:00
container 'https://depot.galaxyproject.org/singularity/bowtie:1.3.0--py38hed8969a_1'
2020-12-17 06:33:44 +00:00
} else {
2020-12-17 09:24:48 +00:00
container 'quay.io/biocontainers/bowtie:1.3.0--py38hed8969a_1'
2020-12-17 06:33:44 +00:00
}
2020-12-08 11:57:00 +00:00
input:
path fasta
output:
2020-12-17 09:24:48 +00:00
path 'bowtie', emit: index
path '*.version.txt', emit: version
2020-12-08 11:57:00 +00:00
script:
def software = getSoftwareName(task.process)
"""
2020-12-09 14:58:56 +00:00
mkdir bowtie
2020-12-18 10:06:02 +00:00
bowtie-build --threads $task.cpus $fasta bowtie/${fasta.baseName}
echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//' > ${software}.version.txt
2020-12-08 11:57:00 +00:00
"""
2020-12-17 09:24:48 +00:00
}