mailr9836 - /branches/bmrb/bmrblib/assembly_supercategory/entity.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on October 28, 2009 - 18:20:
Author: bugman
Date: Wed Oct 28 18:20:02 2009
New Revision: 9836

URL: http://svn.gna.org/viewcvs/relax?rev=9836&view=rev
Log:
Shifted a line of code to the correct place.


Modified:
    branches/bmrb/bmrblib/assembly_supercategory/entity.py

Modified: branches/bmrb/bmrblib/assembly_supercategory/entity.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bmrb/bmrblib/assembly_supercategory/entity.py?rev=9836&r1=9835&r2=9836&view=diff
==============================================================================
--- branches/bmrb/bmrblib/assembly_supercategory/entity.py (original)
+++ branches/bmrb/bmrblib/assembly_supercategory/entity.py Wed Oct 28 
18:20:02 2009
@@ -82,13 +82,13 @@
         allowed = ['DNA/RNA hybrid', 'polydeoxyribonucleotide', 
'polypeptide(D)', 'polypeptide(L)', 'polyribonucleotide', 
'polysaccharide(D)', 'polysaccharide(L)']
         if polymer_type not in allowed:
             raise NameError("The polymer type '%s' should be one of %s." % 
(polymer_type, allowed))
-        allowed = ['all disulfide bound', 'all free', 'all other bound', 
'disulfide and other bound', 'free and disulfide bound', 'free and other 
bound', 'free disulfide and other bound', 'not available', 'not present', 
'not reported', 'unknown']
 
         # Check the polymer one letter code sequence.
         if not isinstance(polymer_seq_code, str):
             raise NameError("The polymer one letter code sequence '%s' 
should be a string." % polymer_seq_code)
 
         # Check the thiol state.
+        allowed = ['all disulfide bound', 'all free', 'all other bound', 
'disulfide and other bound', 'free and disulfide bound', 'free and other 
bound', 'free disulfide and other bound', 'not available', 'not present', 
'not reported', 'unknown']
         if thiol_state not in allowed:
             raise NameError("The thiol state '%s' should be one of %s." % 
(thiol_state, allowed))
 




Related Messages


Powered by MHonArc, Updated Wed Oct 28 19:00:03 2009