2021-09-03 07:28:28 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2021-09-03 07:28:28 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process BBMAP_INDEX {
|
|
|
|
tag "$fasta"
|
|
|
|
label 'process_long'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-09-15 10:38:56 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:[]) }
|
2021-09-03 07:28:28 +00:00
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::bbmap=38.92" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/bbmap:38.92--he522d1c_0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/bbmap:38.92--he522d1c_0"
|
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
2021-09-15 10:38:56 +00:00
|
|
|
path fasta
|
2021-09-03 07:28:28 +00:00
|
|
|
|
|
|
|
output:
|
2021-09-15 10:38:56 +00:00
|
|
|
path 'ref' , emit: index
|
2021-09-27 08:41:24 +00:00
|
|
|
path "versions.yml" , emit: version
|
2021-09-03 07:28:28 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
"""
|
|
|
|
bbmap.sh \\
|
|
|
|
ref=${fasta} \\
|
|
|
|
$options.args \\
|
|
|
|
threads=$task.cpus \\
|
|
|
|
-Xmx${task.memory.toGiga()}g
|
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
|
|
|
${getSoftwareName(task.process)}: \$(bbversion.sh)
|
|
|
|
END_VERSIONS
|
2021-09-03 07:28:28 +00:00
|
|
|
"""
|
|
|
|
}
|