mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
9c31cf1566
* Fix version commands: round 3 * Fix seqkit/split2 modules
15 lines
585 B
Text
15 lines
585 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SEACR_CALLPEAK } from '../../../../modules/seacr/callpeak/main.nf' addParams( options: [ args:'norm stringent' ] )
|
|
|
|
workflow test_seacr_callpeak {
|
|
input = [
|
|
[ id:'test_1'],
|
|
file("https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/delete_me/bedgraph/K27me3_1_to_chr20.bedgraph", checkIfExists: true),
|
|
file("https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/delete_me/bedgraph/IgG_1_to_chr20.bedgraph", checkIfExists: true)
|
|
]
|
|
|
|
SEACR_CALLPEAK ( input )
|
|
}
|