mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
14 lines
377 B
Text
14 lines
377 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { COOLER_DUMP } from '../../../../software/cooler/dump/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_cooler_dump {
|
||
|
|
||
|
input = [ [ id:'test' ], // meta map
|
||
|
file("https://raw.githubusercontent.com/open2c/cooler/master/tests/data/toy.asymm.16.cool", checkIfExists: true) ]
|
||
|
|
||
|
COOLER_DUMP ( input )
|
||
|
}
|