nf-core_modules/software/tcoffee/test/main.nf

21 lines
361 B
Text
Raw Normal View History

2020-03-05 16:18:35 +00:00
#!/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()
}