nf-core_modules/tests/software/ucsc/bedclip/main.nf
Harshil Patel defaca4f1b
Add ucsc/bedclip module (#450)
* Add ucsc/bedclip module

* Fix tests

* Fix nf-core lint
2021-04-15 22:04:59 +02:00

14 lines
496 B
Text
Executable file

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { UCSC_BEDCLIP } from '../../../../software/ucsc/bedclip/main.nf' addParams( options: [suffix:'.clip'] )
workflow test_ucsc_bedclip {
input = [ [ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['illumina']['test_bedgraph'], checkIfExists: true)
]
sizes = file(params.test_data['sarscov2']['genome']['genome_sizes'], checkIfExists: true)
UCSC_BEDCLIP ( input, sizes )
}