nf-core_modules/tests/modules/bbmap/index/main.nf
Daniel Lundin 0f59b07945
Bbmap index (#683)
BBMap index module
2021-09-03 09:28:28 +02:00

13 lines
353 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 = [ [ id:'test' ], // meta map
file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true) ]
BBMAP_INDEX ( input )
}