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

12 lines
327 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 '../../../../modules/bwameth/index/main.nf' addParams( options: [publish_dir:'bwameth'] )
2021-02-17 17:03:48 +00:00
workflow test_bwameth_index {
fasta = file(params.test_data['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
}