nf-core_modules/tests/modules/pints/caller/main.nf

22 lines
655 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PINTS_CALLER } from '../../../../modules/pints/caller/main.nf'
workflow test_pints_caller {
input = [
[ id:'test', single_end:false ], // meta map
// FIXME Fails if it doesn't find any signals
[file("https://raw.githubusercontent.com/Kraus-Lab/groHMM/master/inst/extdata/S0mR1.bam", checkIfExists: true),
file("https://raw.githubusercontent.com/Kraus-Lab/groHMM/master/inst/extdata/S40mR1.bam", checkIfExists: true)]
]
PINTS_CALLER ( input )
}
// TODO Test single bam input
// TODO Test single bigwig input
// TODO Test multiple bigwig input