From dd76c81a86f39b4a1c7819a8da1c8d1cb53c8869 Mon Sep 17 00:00:00 2001 From: Dominic Boceck Date: Tue, 2 Mar 2021 12:58:23 +0100 Subject: [PATCH] Update create_result_vcf.py Additional bugfix --- aidiva/helper_modules/create_result_vcf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aidiva/helper_modules/create_result_vcf.py b/aidiva/helper_modules/create_result_vcf.py index bbf27e1..0fd4729 100644 --- a/aidiva/helper_modules/create_result_vcf.py +++ b/aidiva/helper_modules/create_result_vcf.py @@ -8,8 +8,11 @@ def write_header(out_file, single): if not single: out_file.write("##INFO=\n") out_file.write("##INFO=\n") + out_file.write("##INFO=\n") else: out_file.write("##INFO=\n") + out_file.write("##INFO=\n") + out_file.write("##INFO=\n") out_file.write("##contig=\n") out_file.write("##contig=\n")