mailr6116 - /1.3/prompt/deselect.py


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

Header


Content

Posted by edward on May 07, 2008 - 15:05:
Author: bugman
Date: Wed May  7 15:04:51 2008
New Revision: 6116

URL: http://svn.gna.org/viewcvs/relax?rev=6116&view=rev
Log:
Sorting of functions.


Modified:
    1.3/prompt/deselect.py

Modified: 1.3/prompt/deselect.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/deselect.py?rev=6116&r1=6115&r2=6116&view=diff
==============================================================================
--- 1.3/prompt/deselect.py (original)
+++ 1.3/prompt/deselect.py Wed May  7 15:04:51 2008
@@ -167,6 +167,26 @@
         selection.desel_read(file=file, dir=dir, mol_name_col=mol_name_col, 
res_num_col=res_num_col, res_name_col=res_name_col, 
spin_num_col=spin_num_col, spin_name_col=spin_name_col, sep=sep, 
change_all=change_all)
 
 
+    def reverse(self):
+        """Function for the reversal of the spin selection.
+
+        Examples
+        ~~~~~~~~
+
+        To deselect all currently selected spins and select those which are 
deselected type:
+
+        relax> deselect.reverse()
+        """
+
+        # Function intro test.
+        if self.__relax__.interpreter.intro:
+            text = sys.ps3 + "deselect.reverse()"
+            print text
+
+        # Execute the functional code.
+        selection.reverse()
+
+
     def spin(self, spin_id=None, change_all=False):
         """Function for deselecting specific spins.
 
@@ -217,23 +237,3 @@
 
         # Execute the functional code.
         selection.desel_spin(spin_id=spin_id, change_all=change_all)
-
-
-    def reverse(self):
-        """Function for the reversal of the spin selection.
-
-        Examples
-        ~~~~~~~~
-
-        To deselect all currently selected spins and select those which are 
deselected type:
-
-        relax> deselect.reverse()
-        """
-
-        # Function intro test.
-        if self.__relax__.interpreter.intro:
-            text = sys.ps3 + "deselect.reverse()"
-            print text
-
-        # Execute the functional code.
-        selection.reverse()




Related Messages


Powered by MHonArc, Updated Wed May 07 16:00:16 2008