2021-04-30 12:18:58 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2021-04-30 12:18:58 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
2021-04-30 14:57:43 +00:00
|
|
|
options = initOptions(params.options)
|
2021-04-30 12:18:58 +00:00
|
|
|
|
|
|
|
process GRAPHMAP2_INDEX {
|
2021-04-30 14:57:43 +00:00
|
|
|
label 'process_medium'
|
2021-04-30 12:18:58 +00:00
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-30 14:57:43 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:['']) }
|
2021-04-30 12:18:58 +00:00
|
|
|
|
2021-04-30 14:57:43 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::graphmap=0.6.3" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/graphmap:0.6.3--he513fc3_0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/graphmap:0.6.3--he513fc3_0"
|
|
|
|
}
|
2021-04-30 12:18:58 +00:00
|
|
|
|
|
|
|
input:
|
2021-04-30 14:57:43 +00:00
|
|
|
path fasta
|
2021-04-30 12:18:58 +00:00
|
|
|
|
|
|
|
output:
|
2021-04-30 14:57:43 +00:00
|
|
|
path "*.gmidx" , emit: index
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-04-30 12:18:58 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
"""
|
|
|
|
graphmap2 \\
|
|
|
|
align \\
|
|
|
|
-t $task.cpus \\
|
|
|
|
-I \\
|
2021-04-30 14:57:43 +00:00
|
|
|
$options.args \\
|
2021-04-30 12:18:58 +00:00
|
|
|
-r $fasta
|
2021-04-30 14:57:43 +00:00
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
2021-09-28 05:56:27 +00:00
|
|
|
${getSoftwareName(task.process)}: \$(echo \$(graphmap2 align 2>&1) | sed 's/^.*Version: v//; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-04-30 12:18:58 +00:00
|
|
|
"""
|
|
|
|
}
|