nf-core_modules/software/bwamem2/index/main.nf
FriederikeHanssen 555f1710e0
Update test paths in bwa mappers (#387)
* Update test paths in bwa mappers

* Fix indentation

* indices pass lcoally now

* no idea how they could ever pass before, Tests pass locally no

* Update samtools and bwamem2 versions

* Correct mulled containers + md5
2021-03-25 09:24:21 +00:00

35 lines
1.1 KiB
Text

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