mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
19 lines
366 B
Text
19 lines
366 B
Text
|
process tcoffee {
|
||
|
tag {fasta}
|
||
|
// publishDir "${params.outdir}/tcoffee" //not working
|
||
|
publishDir "${baseDir}/results/tcoffee", mode: 'copy'
|
||
|
container 'quay.io/biocontainers/t_coffee:11.0.8--py27pl5.22.0_5'
|
||
|
|
||
|
input:
|
||
|
path(fasta)
|
||
|
|
||
|
output:
|
||
|
path("${fasta}.aln")
|
||
|
|
||
|
script:
|
||
|
"""
|
||
|
t_coffee -seq $fasta -outfile ${fasta}.aln
|
||
|
"""
|
||
|
}
|
||
|
|