nf-core_modules/modules/bwamem2/index/main.nf

43 lines
1.3 KiB
Text
Raw Normal View History

2021-02-12 12:00:02 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-02-12 12:00:02 +00:00
params.options = [:]
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,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'index', meta:[:], publish_by_meta:[]) }
2021-02-12 12:00:02 +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) {
container "https://depot.galaxyproject.org/singularity/bwa-mem2:2.2.1--he513fc3_0"
2021-02-12 12:00:02 +00:00
} else {
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
path "versions.yml" , emit: version
2021-02-12 12:00:02 +00:00
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}
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo \$(bwa-mem2 version 2>&1) | sed 's/.* //')
END_VERSIONS
2021-02-12 12:00:02 +00:00
"""
}