mailr22069 - in /branches/double_rotor: ./ pipe_control/rdc.py


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

Header


Content

Posted by edward on January 29, 2014 - 17:55:
Author: bugman
Date: Wed Jan 29 17:55:45 2014
New Revision: 22069

URL: http://svn.gna.org/viewcvs/relax?rev=22069&view=rev
Log:
Merged revisions 22068 via svnmerge from 
svn+ssh://bugman@xxxxxxxxxxx/svn/relax/trunk

........
  r22068 | bugman | 2014-01-29 17:41:33 +0100 (Wed, 29 Jan 2014) | 5 lines
  
  The behaviour of the rdc.write user function has been changed to output 
spin ID strings in single quotes.
  
  This is to avoid problems with the '#' molecule identifier and the '#' 
comment character.
........

Modified:
    branches/double_rotor/   (props changed)
    branches/double_rotor/pipe_control/rdc.py

Propchange: branches/double_rotor/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Wed Jan 29 17:55:45 2014
@@ -1,1 +1,1 @@
-/trunk:1-22064
+/trunk:1-22068

Modified: branches/double_rotor/pipe_control/rdc.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/double_rotor/pipe_control/rdc.py?rev=22069&r1=22068&r2=22069&view=diff
==============================================================================
--- branches/double_rotor/pipe_control/rdc.py (original)
+++ branches/double_rotor/pipe_control/rdc.py Wed Jan 29 17:55:45 2014
@@ -1267,8 +1267,8 @@
 
         # Append the spin data.
         data.append([])
-        data[-1].append(interatom.spin_id1)
-        data[-1].append(interatom.spin_id2)
+        data[-1].append(repr(interatom.spin_id1))
+        data[-1].append(repr(interatom.spin_id2))
 
         # Handle the missing rdc_data_types variable.
         data_type = None




Related Messages


Powered by MHonArc, Updated Wed Jan 29 18:00:01 2014