mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
20 lines
434 B
Text
20 lines
434 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { SAMTOOLS_STATS } 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),
|
||
|
file("${baseDir}/input/test.paired_end.sorted.bam.bai", checkIfExists: true) ]
|
||
|
|
||
|
SAMTOOLS_STATS ( input, [:] )
|
||
|
}
|
||
|
|
||
|
workflow {
|
||
|
test()
|
||
|
}
|