nf-core_modules/software/bwa/index/test/main.nf
2020-10-15 10:47:15 +01:00

13 lines
237 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BWA_INDEX } from '../main.nf' addParams( options: [:] )
workflow test {
BWA_INDEX ( file("${baseDir}/input/NC_010473.fa", checkIfExists: true) )
}
workflow {
test()
}