mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
20 lines
No EOL
552 B
Text
20 lines
No EOL
552 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SEACR_CALLPEAK } from '../../../software/seacr/callpeak/main.nf' addParams( options: [ args:'norm stringent' ] )
|
|
|
|
workflow test_seacr_callpeak {
|
|
|
|
def input = []
|
|
input = [[ id:'test_1'],
|
|
file("${launchDir}/tests/data/bedgraph/K27me3_1_to_chr20.bedgraph", checkIfExists: true),
|
|
file("${launchDir}/tests/data/bedgraph/IgG_1_to_chr20.bedgraph", checkIfExists: true) ]
|
|
|
|
SEACR_CALLPEAK ( input )
|
|
}
|
|
|
|
// For local testing
|
|
workflow {
|
|
test_seacr_callpeak()
|
|
} |