nf-core_modules/deprecated/tcoffee/main.nf

17 lines
292 B
Text
Raw Normal View History

2020-03-05 16:18:35 +00:00
process tcoffee {
tag "$fasta"
publishDir "${params.outdir}/tcoffee"
2020-03-05 16:18:35 +00:00
container 'quay.io/biocontainers/t_coffee:11.0.8--py27pl5.22.0_5'
input:
path "$fasta"
2020-03-05 16:18:35 +00:00
output:
path "${fasta}.aln"
2020-03-05 16:18:35 +00:00
script:
"""
t_coffee -seq $fasta -outfile ${fasta}.aln
"""
}