From ca5926b0ba72c9466cd7ea0af353c799a960a481 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Thu, 18 Aug 2011 11:00:58 +0200 Subject: [PATCH] added enum with 20 standard amino acids --- modules/conop/pymod/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/conop/pymod/__init__.py b/modules/conop/pymod/__init__.py index 44aaed354..a534ea808 100644 --- a/modules/conop/pymod/__init__.py +++ b/modules/conop/pymod/__init__.py @@ -18,6 +18,17 @@ #------------------------------------------------------------------------------ from _ost_conop import * +# The 20 standard amino acids in no particular order +STANDARD_AMINOACIDS=( + 'ALA', 'ARG', 'ASN', + 'ASP', 'GLN', 'GLU', + 'LYS', 'SER', 'CYS', + 'MET', 'TRP', 'TYR', + 'THR', 'VAL', 'ILE', + 'LEU', 'GLY', 'PRO', + 'HIS', 'PHE', +) + def ConnectAll(ent): ''' Uses the current default builder to connect the atoms of the entity, assign -- GitLab