mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
3c5492b4a3
* Fix outstanding tests * Fix more version commands * Fix remaining modules
12 lines
323 B
Text
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 )
|
|
}
|