From a56d893e54d1b4fa5b49bff60ece6038ddf2fed8 Mon Sep 17 00:00:00 2001 From: Nico Maillet <nicolas.maillet@pasteur.fr> Date: Mon, 18 Dec 2023 09:53:12 +0100 Subject: [PATCH] =?UTF-8?q?Add=20=CE=B1-Lytic?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rpg/enzymes_definition.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/rpg/enzymes_definition.py b/rpg/enzymes_definition.py index b045e5b..e545f41 100644 --- a/rpg/enzymes_definition.py +++ b/rpg/enzymes_definition.py @@ -1801,3 +1801,18 @@ ENZYME = enzyme.Enzyme(CPT_ENZ, "Elastase", ENZ, 0) # Add it to available enzymes AVAILABLE_ENZYMES.append(ENZYME) CPT_ENZ += 1 + + + +# α-Lytic +# https://www.neb.com/en/products/p8113-a-lytic-protease#Product%20Information +# RULES: after T, A, S or V +ENZ = [] +ENZ.append(rule.Rule(0, "T", True, 1)) +ENZ.append(rule.Rule(0, "A", True, 1)) +ENZ.append(rule.Rule(0, "S", True, 1)) +ENZ.append(rule.Rule(0, "V", True, 1)) +ENZYME = enzyme.Enzyme(CPT_ENZ, "aLP", ENZ, 0) +# Add it to available enzymes +AVAILABLE_ENZYMES.append(ENZYME) +CPT_ENZ += 1 -- GitLab