feat: Add PREDICTHAPLO module
This commit is contained in:
parent
d8fee48c28
commit
029f3a5126
1 changed files with 23 additions and 0 deletions
23
modules/predicthaplo/main.nf
Normal file
23
modules/predicthaplo/main.nf
Normal file
|
@ -0,0 +1,23 @@
|
|||
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}"
|
||||
"""
|
||||
}
|
Loading…
Reference in a new issue