nf-core_modules/tests/software/gatk4/revertsam/main.nf

14 lines
382 B
Text
Raw Normal View History

#!/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:21:39 +00:00
workflow test_gatk4_revertsam {
input = [ [ id:'test' ], // meta map
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true)
]
GATK4_REVERTSAM ( input )
}