nf-core_modules/software/htslib/tabix/test/main.nf

14 lines
325 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.preview.dsl = 2
2020-07-11 12:33:12 +00:00
include '../../../tests/functions/check_process_outputs.nf' params(params)
include '../main.nf' params(params)
// Define input channels
input = '../../../test-datasets/tools/file.vcf.gz'
// Run the workflow
workflow {
tabix_index(ch_read_files)
// .check_output()
}