nf-core_modules/tests/modules/bbmap/index/main.nf
Daniel Lundin 3a8bfc1d33
Get rid of meta map from bbmap/index (#700)
Got rid of meta map from bbmap/index
2021-09-15 12:38:56 +02:00

12 lines
308 B
Text

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