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

14 lines
237 B
Text
Raw Normal View History

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