2021-02-15 13:33:44 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { MOSDEPTH } from '../../../modules/mosdepth/main.nf'
|
2021-02-15 13:33:44 +00:00
|
|
|
|
|
|
|
workflow test_mosdepth {
|
2021-03-24 09:53:41 +00:00
|
|
|
input = [ [ id:'test', single_end:true ],
|
2021-04-01 19:22:06 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ],
|
2022-02-09 12:45:55 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true) ]
|
|
|
|
]
|
|
|
|
|
|
|
|
MOSDEPTH ( input, [], [] )
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
workflow test_mosdepth_window {
|
|
|
|
input = [ [ id:'test', single_end:true ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
|
|
|
window = 100
|
2021-02-15 13:33:44 +00:00
|
|
|
|
2022-02-09 12:45:55 +00:00
|
|
|
MOSDEPTH ( input, [], window )
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
workflow test_mosdepth_bed {
|
|
|
|
input = [ [ id:'test', single_end:true ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true) ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true) ]
|
|
|
|
]
|
|
|
|
bed = [ file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true) ]
|
|
|
|
|
|
|
|
MOSDEPTH ( input, bed, [] )
|
2021-02-15 13:33:44 +00:00
|
|
|
}
|