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
|
|
|
|
2021-04-30 14:57:43 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::graphmap=0.6.3" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/graphmap:0.6.3--he513fc3_0' :
|
|
|
|
'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:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2021-04-30 12:18:58 +00:00
|
|
|
"""
|
|
|
|
graphmap2 \\
|
|
|
|
align \\
|
|
|
|
-t $task.cpus \\
|
|
|
|
-I \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$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
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
graphmap2: \$(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
|
|
|
"""
|
|
|
|
}
|