mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
12 lines
419 B
Text
12 lines
419 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { PHANTOMPEAKQUALTOOLS } from '../../../software/phantompeakqualtools/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_phantompeakqualtools {
|
|
def input = []
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
[ file("${launchDir}/tests/data/bam/test.single_end.sorted.bam", checkIfExists: true) ] ]
|
|
PHANTOMPEAKQUALTOOLS ( input )
|
|
}
|