nf-core_modules/software/bwa/index/main.nf

34 lines
1.1 KiB
Text
Raw Normal View History

2020-08-05 12:15:56 -04:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName } from './functions'
params.options = [:]
def options = initOptions(params.options)
2020-08-05 12:15:56 -04:00
process BWA_INDEX {
tag "$fasta"
label 'process_high'
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
2020-08-05 12:15:56 -04:00
conda (params.enable_conda ? "bioconda::bwa=0.7.17=hed695b0_7" : null)
2020-12-13 19:05:48 -05: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 06:13:14 -05:00
container "quay.io/biocontainers/bwa:0.7.17--hed695b0_7"
2020-12-13 19:05:48 -05:00
}
2020-08-05 12:15:56 -04:00
input:
path fasta
2020-12-17 18:50:24 -05:00
2020-08-05 12:15:56 -04:00
output:
2020-09-10 11:45:11 -04:00
path "${fasta}.*" , emit: index
2020-08-05 12:15:56 -04:00
path "*.version.txt", emit: version
script:
def software = getSoftwareName(task.process)
"""
bwa index $options.args $fasta
2020-08-05 12:15:56 -04:00
echo \$(bwa 2>&1) | sed 's/^.*Version: //; s/Contact:.*\$//' > ${software}.version.txt
"""
2021-02-03 14:22:42 -05:00
}