feat: Add ViQuas module
This commit is contained in:
parent
108fb0dc5b
commit
1e20488409
1 changed files with 20 additions and 0 deletions
20
modules/viquas/main.nf
Normal file
20
modules/viquas/main.nf
Normal file
|
@ -0,0 +1,20 @@
|
|||
process VIQUAS {
|
||||
tag "${prefix}"
|
||||
label 'process_high'
|
||||
|
||||
input:
|
||||
tuple val(prefix), path(bam)
|
||||
path(reference)
|
||||
|
||||
output:
|
||||
tuple val(prefix), path("*.fa")
|
||||
|
||||
publishDir "results/viquas", mode: 'copy'
|
||||
|
||||
script:
|
||||
"""
|
||||
viquas \\
|
||||
${reference} \\
|
||||
${bam}
|
||||
"""
|
||||
}
|
Loading…
Reference in a new issue