nf-core_modules/tests/modules/samtools/faidx/main.nf

12 lines
312 B
Text
Raw Normal View History

2021-02-17 15:46:34 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SAMTOOLS_FAIDX } from '../../../../modules/samtools/faidx/main.nf' addParams( options: [:] )
2021-02-17 15:46:34 +00:00
workflow test_samtools_faidx {
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
2021-02-17 15:46:34 +00:00
SAMTOOLS_FAIDX ( fasta )
2021-02-17 15:46:34 +00:00
}