nf-core_modules/deprecated/tcoffee/test/main.nf
2020-08-05 16:09:25 +01:00

15 lines
349 B
Text

#!/usr/bin/env nextflow
nextflow.preview.dsl = 2
include check_output from '../../../tests/functions/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()
}