nf-core_modules/tests/modules/genmap/index/main.nf
Harshil Patel 3c5492b4a3
Fix more version commands (#750)
* Fix outstanding tests

* Fix more version commands

* Fix remaining modules
2021-09-28 06:56:27 +01:00

12 lines
323 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GENMAP_INDEX } from '../../../../modules/genmap/index/main.nf' addParams( options: [publish_dir:'genmap'] )
workflow test_genmap_index {
input = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
GENMAP_INDEX ( input )
}