nf-core_modules/tests/software/phantompeakqualtools/main.nf

13 lines
456 B
Text
Raw Normal View History

#!/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
2020-12-18 14:59:33 +00:00
[ file("${launchDir}/tests/data/bam/test.single_end.sorted.bam", checkIfExists: true) ] ]
PHANTOMPEAKQUALTOOLS ( input )
}