mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
15 lines
485 B
Text
15 lines
485 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { UCSC_LIFTOVER } from '../../../../modules/ucsc/liftover/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow test_ucsc_liftover {
|
||
|
|
||
|
input = [ [ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)]
|
||
|
chain = file(params.test_data['homo_sapiens']['genome']['genome_chain_gz'], checkIfExists: true)
|
||
|
|
||
|
UCSC_LIFTOVER ( input, chain )
|
||
|
}
|