nf-core_modules/software/bwa/index/test/main.nf
2020-08-07 12:56:39 +01:00

13 lines
216 B
Text

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