mailr6806 - /1.3/generic_fns/structure/scientific.py


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

Header


Content

Posted by edward on July 07, 2008 - 21:31:
Author: bugman
Date: Mon Jul  7 21:31:11 2008
New Revision: 6806

URL: http://svn.gna.org/viewcvs/relax?rev=6806&view=rev
Log:
Fix for the atom matching statement in the __find_bonded_atom() method.


Modified:
    1.3/generic_fns/structure/scientific.py

Modified: 1.3/generic_fns/structure/scientific.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/structure/scientific.py?rev=6806&r1=6805&r2=6806&view=diff
==============================================================================
--- 1.3/generic_fns/structure/scientific.py (original)
+++ 1.3/generic_fns/structure/scientific.py Mon Jul  7 21:31:11 2008
@@ -80,7 +80,7 @@
         # The find the attached atom in the residue (FIXME).
         matching_list = []
         for atom in res.atoms:
-            if relax_re.search(atom, attached_atom):
+            if relax_re.search(attached_atom, atom):
                 matching_list.append(atom)
         num_attached = len(matching_list)
 




Related Messages


Powered by MHonArc, Updated Mon Jul 07 21:40:16 2008