nf-core_modules/software/tcoffee/test/main.nf
2020-07-11 14:27:21 +02:00

20 lines
361 B
Text

#!/usr/bin/env nextflow
nextflow.preview.dsl = 2
include check_output from '../../../nf-core/module_testing/check_process_outputs.nf'
include tcoffee from '../main.nf'
// Define input channels
fasta = Channel.fromPath('../../../test-datasets/tools/tcoffee/input/BBA0001.tfa')
// Run the workflow
workflow {
tcoffee(fasta)
// .check_output()
}