nf-core_modules/tests/modules/cooler/dump/main.nf

14 lines
381 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { COOLER_DUMP } from '../../../../modules/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, [:] )
}