Skip to content
Snippets Groups Projects
Commit a56d893e authored by Nicolas  MAILLET's avatar Nicolas MAILLET
Browse files

Add α-Lytic

parent 3b245067
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment