nf-core_modules/modules/bowtie/build/main.nf

38 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; getProcessName } from './functions'
2020-12-08 11:57:00 +00:00
params.options = [:]
options = initOptions(params.options)
2020-12-08 11:57:00 +00:00
2021-02-01 17:53:31 +00:00
process BOWTIE_BUILD {
2020-12-08 11:57:00 +00:00
tag "$fasta"
label 'process_high'
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'index', meta:[:], publish_by_meta:[]) }
2020-12-08 11:57:00 +00:00
2021-02-16 23:58:23 +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:
2021-02-01 17:53:31 +00:00
path 'bowtie' , emit: index
path "versions.yml" , emit: versions
2020-12-08 11:57:00 +00:00
script:
"""
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}
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//')
END_VERSIONS
2020-12-08 11:57:00 +00:00
"""
2020-12-17 09:24:48 +00:00
}