2021-02-15 13:33:44 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2022-05-25 17:19:39 +00:00
|
|
|
include { MOSDEPTH } from '../../../modules/mosdepth/main.nf'
|
|
|
|
include { MOSDEPTH as MOSDEPTH_FAIL } from '../../../modules/mosdepth/main.nf'
|
|
|
|
include { MOSDEPTH as MOSDEPTH_WINDOW } from '../../../modules/mosdepth/main.nf'
|
|
|
|
include { MOSDEPTH as MOSDEPTH_THRESHOLD } from '../../../modules/mosdepth/main.nf'
|
|
|
|
include { MOSDEPTH as MOSDEPTH_QUANTIZED } from '../../../modules/mosdepth/main.nf'
|
|
|
|
|
2021-02-15 13:33:44 +00:00
|
|
|
workflow test_mosdepth {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
|
|
]
|
2022-02-09 12:45:55 +00:00
|
|
|
|
|
|
|
MOSDEPTH ( input, [], [] )
|
|
|
|
}
|
|
|
|
|
2022-05-24 09:47:58 +00:00
|
|
|
workflow test_mosdepth_bed {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
bed = file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
2022-02-09 12:45:55 +00:00
|
|
|
|
2022-05-24 09:47:58 +00:00
|
|
|
MOSDEPTH ( input, bed, [] )
|
2022-02-09 12:45:55 +00:00
|
|
|
}
|
|
|
|
|
2022-05-24 09:47:58 +00:00
|
|
|
workflow test_mosdepth_cram {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram_crai'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
2022-02-09 12:45:55 +00:00
|
|
|
|
2022-05-24 09:47:58 +00:00
|
|
|
MOSDEPTH ( input, [], fasta )
|
|
|
|
}
|
2022-02-09 12:45:55 +00:00
|
|
|
|
2022-05-24 09:47:58 +00:00
|
|
|
workflow test_mosdepth_cram_bed {
|
|
|
|
input = [
|
2022-05-25 18:38:12 +00:00
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram_crai'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
bed = file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
2022-05-24 09:47:58 +00:00
|
|
|
|
|
|
|
MOSDEPTH ( input, bed, fasta )
|
2021-02-15 13:33:44 +00:00
|
|
|
}
|
2022-05-24 10:43:49 +00:00
|
|
|
|
2022-05-24 12:43:40 +00:00
|
|
|
workflow test_mosdepth_window {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
bed = file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
2022-05-24 12:43:40 +00:00
|
|
|
|
|
|
|
MOSDEPTH_WINDOW ( input, [], [] )
|
|
|
|
}
|
|
|
|
|
2022-05-25 17:19:39 +00:00
|
|
|
workflow test_mosdepth_quantized {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
|
|
]
|
2022-05-25 17:19:39 +00:00
|
|
|
|
|
|
|
MOSDEPTH_QUANTIZED ( input, [], [] )
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_mosdepth_thresholds {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
bed = file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
2022-05-25 17:19:39 +00:00
|
|
|
|
|
|
|
MOSDEPTH_THRESHOLD ( input, bed, [] )
|
|
|
|
}
|
|
|
|
|
2022-05-24 10:43:49 +00:00
|
|
|
workflow test_mosdepth_fail {
|
2022-05-25 18:38:12 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:true ],
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
bed = file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
2022-05-24 10:43:49 +00:00
|
|
|
|
|
|
|
MOSDEPTH_FAIL ( input, bed, [] )
|
|
|
|
}
|