nf-core_modules/tests/software/cooler/dump/main.nf
JIANHONG OU 8d4c6de50d
Cooler dump (#516)
* add software/cooler

* fix the wrong files uploaded.

* create a branch for cooler/dump

* remove the bin size from metadata.
2021-06-09 11:14:17 +02:00

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 )
}