mailr6697 - /branches/rdc_analysis/generic_fns/structure/internal.py


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

Header


Content

Posted by edward on July 04, 2008 - 23:59:
Author: bugman
Date: Fri Jul  4 23:41:16 2008
New Revision: 6697

URL: http://svn.gna.org/viewcvs/relax?rev=6697&view=rev
Log:
Fix for the CONECT processing part of __parse_pdb_record().

The last CONECT atom was not being converted into an int.


Modified:
    branches/rdc_analysis/generic_fns/structure/internal.py

Modified: branches/rdc_analysis/generic_fns/structure/internal.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/rdc_analysis/generic_fns/structure/internal.py?rev=6697&r1=6696&r2=6697&view=diff
==============================================================================
--- branches/rdc_analysis/generic_fns/structure/internal.py (original)
+++ branches/rdc_analysis/generic_fns/structure/internal.py Fri Jul  4 
23:41:16 2008
@@ -359,6 +359,8 @@
                 fields[3] = int(fields[3])
             if fields[4]:
                 fields[4] = int(fields[4])
+            if fields[5]:
+                fields[5] = int(fields[5])
 
         # Return the atomic info.
         return fields




Related Messages


Powered by MHonArc, Updated Sat Jul 05 00:20:22 2008