mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 14:13:09 +00:00
15 lines
546 B
Text
15 lines
546 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { COOLER_ZOOMIFY } from '../../../../modules/cooler/zoomify/main.nf' addParams( options: ['args':'-r 2,4,8', publish_files:[:]] )
|
||
|
include { COOLER_DUMP } from '../../../../modules/cooler/dump/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_cooler_zoomify {
|
||
|
input = [ [ id:'test' ], // meta map
|
||
|
file(params.test_data['generic']['cooler']['test_merge_cool'], checkIfExists: true)]
|
||
|
|
||
|
COOLER_ZOOMIFY ( input )
|
||
|
COOLER_DUMP(COOLER_ZOOMIFY.out.mcool, "/resolutions/2")
|
||
|
}
|