From 0fe52d9c7f23426f9efcc28fb317c261fbfed05c Mon Sep 17 00:00:00 2001 From: Tara Nitka Date: Tue, 14 Jan 2025 10:35:49 -0800 Subject: [PATCH] fix asparagine mapping to two categories in hydrocharge alphabet --- snekmer/alphabet.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snekmer/alphabet.py b/snekmer/alphabet.py index 32d0507..b9da99d 100644 --- a/snekmer/alphabet.py +++ b/snekmer/alphabet.py @@ -6,6 +6,7 @@ author(s): @biodataganache, @wichne """ + # imports from typing import Dict, Mapping, Set, Union @@ -50,7 +51,7 @@ # 2-value hydrophobicity with charged residues as a third # category. Made by @biodataganache. "hydrocharge": { - "SFTNYQCWPH": "L", # hydrophilic (L-ove) + "SFTYQCWPH": "L", # hydrophilic (L-ove) "VMLAIG": "H", # hydrophobic (H-ate) "KNDER": "C", # charged (C-harged) "_keys": "LHC",