2020-12-08 11:57:00 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2020-12-08 11:57:00 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
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,
|
2021-04-10 19:49:09 +00:00
|
|
|
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
|
2021-10-01 13:04:56 +00:00
|
|
|
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}
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
2021-09-27 21:10:37 +00:00
|
|
|
${getSoftwareName(task.process)}: \$(echo \$(bowtie --version 2>&1) | sed 's/^.*bowtie-align-s version //; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2020-12-08 11:57:00 +00:00
|
|
|
"""
|
2020-12-17 09:24:48 +00:00
|
|
|
}
|