mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
8d4c6de50d
* add software/cooler * fix the wrong files uploaded. * create a branch for cooler/dump * remove the bin size from metadata.
13 lines
377 B
Text
13 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 )
|
|
}
|