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

13 lines
323 B
Text
Raw Normal View History

#!/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 )
}