From b8eac47b6da6c66baf057b84cca31f4180c2603e Mon Sep 17 00:00:00 2001 From: jonas-fuchs Date: Mon, 23 Oct 2023 17:40:50 +0200 Subject: [PATCH] fixed mut_type --- virheat/scripts/data_prep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virheat/scripts/data_prep.py b/virheat/scripts/data_prep.py index bbbf229..ad68553 100644 --- a/virheat/scripts/data_prep.py +++ b/virheat/scripts/data_prep.py @@ -66,7 +66,7 @@ def read_vcf(vcf_file): for key in header[0:6]: vcf_dict[key] = [] # functional effect - vcf_dict["MUT_TYPE"] = [] + vcf_dict["MUT_TYPE_"] = [] # info field for line in lines: for info in line[7].split(";"):