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