From b8946639dc5bbaa6d2540119ff7da7e057d04102 Mon Sep 17 00:00:00 2001 From: luponzo86 Date: Tue, 10 Dec 2019 09:41:51 -0800 Subject: [PATCH] - --- rhapsody/predict/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhapsody/predict/core.py b/rhapsody/predict/core.py index 2fae2a6..87a2005 100644 --- a/rhapsody/predict/core.py +++ b/rhapsody/predict/core.py @@ -595,7 +595,7 @@ def _calcPolyPhen2Predictions(self): PP2_score = [x if x != '?' else 'nan' for x in self.PolyPhen2output['pph2_prob']] PP2_class = [x if x not in ['none', '?'] else '?' for x in - self.PolyPhen2output['pph2_class'] + self.PolyPhen2output['pph2_class']] self.data['PolyPhen-2 score'] = PP2_score self.data['PolyPhen-2 path. class'] = PP2_class