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

12 lines
308 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(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
}