nf-core_modules/software/samtools/faidx/test/main.nf

14 lines
340 B
Text
Raw Normal View History

2020-01-23 10:36:21 +00:00
#!/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)
2020-01-23 10:36:21 +00:00
include '../main.nf' params(params)
// Define input channels
input = '../../../test-datasets/tools/bwa/index/input/reference.fasta'
// Run the workflow
workflow {
samtools_faidx(input)
// .check_output()
}