mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
616 B
Text
16 lines
616 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { ATLAS_SPLITMERGE } from '../../../../modules/atlas/splitmerge/main.nf'
|
||
|
|
||
|
//MAIN
|
||
|
workflow test_atlas_splitmerge {
|
||
|
meta = [ id:'test', single_end:false ]
|
||
|
bam = file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
||
|
bai = file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
||
|
settings = file(params.test_data['homo_sapiens']['illumina']['read_group_settings_txt'], checkIfExists: true)
|
||
|
|
||
|
ATLAS_SPLITMERGE ( [meta, bam, bai, settings, []] )
|
||
|
}
|