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

12 lines
322 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 '../../../../software/samtools/faidx/main.nf' addParams( options: [:] )
workflow test_samtools_faidx {
fasta = file("${launchDir}/tests/data/genomics/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
}