2021-04-13 07:49:32 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-01 18:50:14 +00:00
|
|
|
include { RSEQC_JUNCTIONANNOTATION } from '../../../../software/rseqc/junctionannotation/main.nf' addParams(options: [:])
|
2021-04-13 07:49:32 +00:00
|
|
|
|
|
|
|
workflow test_rseqc_junctionannotation {
|
2021-07-01 18:50:14 +00:00
|
|
|
input = [
|
|
|
|
[ id:'test', single_end: false ], // meta map
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
|
|
|
]
|
2021-04-13 07:49:32 +00:00
|
|
|
|
2021-07-01 18:50:14 +00:00
|
|
|
bed = file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true)
|
2021-04-13 07:49:32 +00:00
|
|
|
|
|
|
|
RSEQC_JUNCTIONANNOTATION ( input, bed )
|
|
|
|
}
|