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

13 lines
308 B
Text
Raw Normal View History

2021-09-03 07:28:28 +00:00
#!/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)
2021-09-03 07:28:28 +00:00
BBMAP_INDEX ( input )
}