mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
370 B
Text
16 lines
370 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { CNVKIT_ANTITARGET } from '../../../../modules/cnvkit/antitarget/main.nf'
|
|
|
|
workflow test_cnvkit_antitarget {
|
|
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed'], checkIfExists: true)
|
|
]
|
|
|
|
CNVKIT_ANTITARGET ( input )
|
|
}
|
|
|