2021-05-20 19:39:33 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 09:10:18 +00:00
|
|
|
include { UCSC_BIGWIGAVERAGEOVERBED } from '../../../../modules/ucsc/bigwigaverageoverbed/main.nf' addParams( options: [:] )
|
2021-05-20 19:39:33 +00:00
|
|
|
|
|
|
|
workflow test_ucsc_bigwigaverageoverbed {
|
2021-09-28 13:37:47 +00:00
|
|
|
input = [
|
|
|
|
[ id: 'test' ], // meta map
|
|
|
|
[ file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true ) ]
|
|
|
|
]
|
2021-05-20 19:39:33 +00:00
|
|
|
bigwig = file(params.test_data['sarscov2']['illumina']['test_bigwig'], checkIfExists: true)
|
|
|
|
|
|
|
|
UCSC_BIGWIGAVERAGEOVERBED ( input, bigwig )
|
|
|
|
}
|