2021-02-22 14:10:20 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { GATK4_REVERTSAM } from '../../../../modules/gatk4/revertsam/main.nf'
|
2021-02-22 14:10:20 +00:00
|
|
|
|
2021-02-22 14:21:39 +00:00
|
|
|
workflow test_gatk4_revertsam {
|
2021-02-22 14:10:20 +00:00
|
|
|
input = [ [ id:'test' ], // meta map
|
2021-03-26 11:46:46 +00:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true)
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-02-22 14:10:20 +00:00
|
|
|
|
2021-03-24 09:53:41 +00:00
|
|
|
GATK4_REVERTSAM ( input )
|
2021-02-22 14:10:20 +00:00
|
|
|
}
|
2022-05-02 09:59:08 +00:00
|
|
|
|
|
|
|
workflow test_gatk4_revertsam_stubs {
|
|
|
|
input = [ [ id:'test' ], // meta map
|
2022-05-02 11:30:18 +00:00
|
|
|
"foo_paired_end.bam"
|
2022-05-02 09:59:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
GATK4_REVERTSAM ( input )
|
|
|
|
}
|