2020-08-05 16:15:56 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
2020-10-14 17:59:25 +00:00
|
|
|
params.options = [:]
|
|
|
|
def options = initOptions(params.options)
|
|
|
|
|
2020-08-05 16:15:56 +00:00
|
|
|
process BWA_INDEX {
|
|
|
|
tag "$fasta"
|
|
|
|
label 'process_high'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2020-10-14 17:59:25 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
|
2020-08-05 16:15:56 +00:00
|
|
|
|
2021-02-03 09:16:22 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::bwa=0.7.17=hed695b0_7" : null)
|
2020-12-14 00:05:48 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/bwa:0.7.17--hed695b0_7"
|
|
|
|
} else {
|
2021-02-02 11:13:14 +00:00
|
|
|
container "quay.io/biocontainers/bwa:0.7.17--hed695b0_7"
|
2020-12-14 00:05:48 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 16:15:56 +00:00
|
|
|
input:
|
|
|
|
path fasta
|
2020-12-17 23:50:24 +00:00
|
|
|
|
2020-08-05 16:15:56 +00:00
|
|
|
output:
|
2021-02-02 13:37:24 +00:00
|
|
|
path "bwa" , emit: index
|
2020-08-05 16:15:56 +00:00
|
|
|
path "*.version.txt", emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
"""
|
2021-02-02 12:34:23 +00:00
|
|
|
mkdir bwa
|
2021-02-02 13:37:24 +00:00
|
|
|
bwa index $options.args $fasta -p bwa/${fasta.baseName}
|
2020-08-05 16:15:56 +00:00
|
|
|
echo \$(bwa 2>&1) | sed 's/^.*Version: //; s/Contact:.*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|