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

20 lines
461 B
Text
Raw Normal View History

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