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

19 lines
342 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
2020-08-07 14:17:46 +00:00
nextflow.enable.dsl = 2
2020-08-07 14:17:46 +00:00
include { SAMTOOLS_INDEX } from '../main.nf'
workflow test {
def input = []
input = [ [ id:'test', single_end:false ], // meta map
file("${baseDir}/input/test.paired_end.sorted.bam", checkIfExists: true) ]
SAMTOOLS_INDEX ( input, [:] )
}
workflow {
test()
}