2021-02-12 12:00:02 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2021-02-12 12:00:02 +00:00
|
|
|
|
|
|
|
process BWAMEM2_INDEX {
|
|
|
|
tag "$fasta"
|
|
|
|
label 'process_high'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-03-23 17:55:01 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'index', publish_id:'') }
|
2021-02-12 12:00:02 +00:00
|
|
|
|
2021-03-25 09:24:21 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::bwa-mem2=2.2.1" : null)
|
2021-02-12 12:00:02 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-03-25 09:24:21 +00:00
|
|
|
container "https://depot.galaxyproject.org/singularity/bwa-mem2:2.2.1--he513fc3_0"
|
2021-02-12 12:00:02 +00:00
|
|
|
} else {
|
2021-03-25 09:24:21 +00:00
|
|
|
container "quay.io/biocontainers/bwa-mem2:2.2.1--he513fc3_0"
|
2021-02-12 12:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
path fasta
|
|
|
|
|
|
|
|
output:
|
2021-02-12 14:24:09 +00:00
|
|
|
path "bwamem2" , emit: index
|
2021-02-12 12:00:02 +00:00
|
|
|
path "*.version.txt", emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
"""
|
2021-02-12 14:24:09 +00:00
|
|
|
mkdir bwamem2
|
|
|
|
bwa-mem2 index $options.args $fasta -p bwamem2/${fasta}
|
2021-02-12 12:00:02 +00:00
|
|
|
echo \$(bwa-mem2 version 2>&1) > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|