haplotyper-battle-royale/modules/predicthaplo/main.nf

24 lines
453 B
Text
Raw Normal View History

2023-09-25 23:46:38 +00:00
process PREDICTHAPLO {
tag "${prefix}"
label 'process_high'
container 'quay.io/biocontainers/predicthaplo:2.1.4--h9b88814_5'
input:
tuple val(prefix), path(bam)
path(reference)
output:
tuple val(prefix), path("*.fa*")
publishDir "results/${task.process}", mode: 'copy'
script:
"""
predicthaplo \\
--sam "${bam}" \\
--reference "${reference}" \\
--prefix "${prefix}"
"""
}