mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
15 lines
349 B
Text
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()
|
|
}
|