Update main.nf

This commit is contained in:
James A. Fellows Yates 2021-11-03 12:10:38 +01:00 committed by GitHub
parent 16062f6425
commit 025e214cd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@ include { GATK3_UNIFIEDGENOTYPER } from '../../../../modules/gatk3/unifiedgenoty
workflow test_gatk3_unifiedgenotyper {
input = file(params.test_data['sarscov2']['illumina']['test_single_end_bam'], checkIfExists: true)
ref = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
GATK3_UNIFIEDGENOTYPER ( input )
GATK3_UNIFIEDGENOTYPER ( input, ref )
}