nf-core_modules/tests/software/bwameth/index/main.nf

12 lines
317 B
Text
Raw Normal View History

2021-02-17 17:03:48 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BWAMETH_INDEX } from '../../../../software/bwameth/index/main.nf' addParams( options: [:] )
workflow test_bwameth_index {
fasta = file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
2021-02-17 17:03:48 +00:00
BWAMETH_INDEX ( fasta )
2021-02-17 17:03:48 +00:00
}