2021-03-23 13:37:53 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 09:10:18 +00:00
|
|
|
include { ALLELECOUNTER } from '../../../modules/allelecounter/main.nf' addParams( options: [:] )
|
2021-03-23 13:37:53 +00:00
|
|
|
|
2021-11-02 16:00:25 +00:00
|
|
|
workflow test_allelecounter_bam {
|
2021-03-23 13:37:53 +00:00
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 18:18:01 +00:00
|
|
|
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
|
|
|
]
|
2021-03-24 18:18:01 +00:00
|
|
|
positions = [ file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
|
2021-11-02 16:00:25 +00:00
|
|
|
ALLELECOUNTER ( input, positions, [] )
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
workflow test_allelecounter_cram {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
|
|
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)
|
|
|
|
]
|
|
|
|
positions = [ file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true) ]
|
|
|
|
fasta = [ file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true) ]
|
|
|
|
|
|
|
|
ALLELECOUNTER ( input, positions, fasta )
|
2021-03-23 13:37:53 +00:00
|
|
|
}
|