2021-02-22 14:10:20 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-02-22 14:21:39 +00:00
|
|
|
include { GATK4_REVERTSAM } from '../../../../software/gatk4/revertsam/main.nf' addParams( options: [:] )
|
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
|
|
|
|
|
|
|
def input = []
|
|
|
|
input = [ [ id:'test' ], // meta map
|
2021-02-22 14:21:39 +00:00
|
|
|
file("${launchDir}/tests/data/bam/sarscov2_aln.bam", checkIfExists: true) ]
|
2021-02-22 14:10:20 +00:00
|
|
|
|
2021-02-22 14:21:39 +00:00
|
|
|
GATK4_REVERTSAM( input )
|
2021-02-22 14:10:20 +00:00
|
|
|
}
|