nf-core_modules/software/bwa/index/test/main.nf

14 lines
216 B
Text
Raw Normal View History

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