mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
458f4396a6
* Added support for `task.ext.args` * Renamed the module since it can now process any sort of BED file
14 lines
457 B
Text
14 lines
457 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { UCSC_BEDTOBIGBED } from '../../../../modules/ucsc/bedtobigbed/main.nf'
|
|
|
|
workflow test_ucsc_bedtobigbed {
|
|
input = [ [ id: 'test' ], // meta map
|
|
[ file(params.test_data['sarscov2']['genome']['test_bed12'], checkIfExists: true ) ]
|
|
]
|
|
sizes = file(params.test_data['sarscov2']['genome']['genome_sizes'], checkIfExists: true)
|
|
|
|
UCSC_BEDTOBIGBED ( input, sizes )
|
|
}
|