mailr3562 - /1.3/prompt/spin.py


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

Header


Content

Posted by edward on November 18, 2007 - 21:02:
Author: bugman
Date: Sun Nov 18 21:02:57 2007
New Revision: 3562

URL: http://svn.gna.org/viewcvs/relax?rev=3562&view=rev
Log:
Implemented the spin.delete() user function.


Modified:
    1.3/prompt/spin.py

Modified: 1.3/prompt/spin.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/spin.py?rev=3562&r1=3561&r2=3562&view=diff
==============================================================================
--- 1.3/prompt/spin.py (original)
+++ 1.3/prompt/spin.py Sun Nov 18 21:02:57 2007
@@ -169,35 +169,34 @@
         spin.create(spin_num=spin_num, spin_name=spin_name, res_id=res_id)
 
 
-    def delete(self, res_id=None):
-        """Function for deleting residues.
-
-        Keyword Arguments
-        ~~~~~~~~~~~~~~~~~
-
-        res_id:  The residue identifier string.
-
-
-        Description
-        ~~~~~~~~~~~
-
-        This function can be used to delete a single or sets of residues.  
See the identification
-        string documentation below for more information.  If spin 
system/atom ids are included a
-        RelaxError will be raised.
-        """
-
-        # Function intro text.
-        if self.__relax__.interpreter.intro:
-            text = sys.ps3 + "residue.delete("
-            text = text + "res_id=" + `res_id` + ")"
-            print text
-
-        # The residue identifier argument.
-        if type(res_id) != str:
-            raise RelaxStrError, ('residue identifier', res_id)
-
-        # Execute the functional code.
-        residue.delete(res_id=res_id)
+    def delete(self, spin_id=None):
+        """Function for deleting spins.
+
+        Keyword Arguments
+        ~~~~~~~~~~~~~~~~~
+
+        spin_id:  The spin identifier string.
+
+
+        Description
+        ~~~~~~~~~~~
+
+        This function can be used to delete a single or sets of spins.  See 
the identification
+        string documentation below for more information.
+        """
+
+        # Function intro text.
+        if self.__relax__.interpreter.intro:
+            text = sys.ps3 + "spin.delete("
+            text = text + "spin_id=" + `spin_id` + ")"
+            print text
+
+        # The spin identifier argument.
+        if type(spin_id) != str:
+            raise RelaxStrError, ('spin identifier', spin_id)
+
+        # Execute the functional code.
+        spin.delete(spin_id=spin_id)
 
 
     def display(self, res_id=None):




Related Messages


Powered by MHonArc, Updated Sun Nov 18 21:20:13 2007