nf-core_modules/software/picard/markduplicates/test/main.nf
2020-08-07 16:30:28 +01:00

18 lines
356 B
Text
Executable file

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PICARD_MARKDUPLICATES } 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) ]
PICARD_MARKDUPLICATES ( input, [:] )
}
workflow {
test()
}