mailr5406 - /1.3/generic_fns/pymol.py


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

Header


Content

Posted by edward on April 08, 2008 - 10:42:
Author: bugman
Date: Tue Apr  8 10:42:32 2008
New Revision: 5406

URL: http://svn.gna.org/viewcvs/relax?rev=5406&view=rev
Log:
Updated the vector_dist() function to the new relax design.


Modified:
    1.3/generic_fns/pymol.py

Modified: 1.3/generic_fns/pymol.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/pymol.py?rev=5406&r1=5405&r2=5406&view=diff
==============================================================================
--- 1.3/generic_fns/pymol.py (original)
+++ 1.3/generic_fns/pymol.py Tue Apr  8 10:42:32 2008
@@ -294,34 +294,29 @@
     pymol.pipe_write("cmd.delete('sele')")
 
 
-def vector_dist(run=None, file=None):
+def vector_dist(file=None):
     """Display the XH bond vector distribution.
 
-    @param run:     The run
-    @type run:      str
     @param file:    The vector distribution PDB file.
     @type file:     str
     """
 
-    # Arguments.
-    self.run = run
-
-    # Test if the run exists.
-    if not self.run in relax_data_store.run_names:
-        raise RelaxNoPipeError, self.run
+    # Test if the current data pipe exists.
+    if not relax_data_store.current_pipe:
+        raise RelaxNoPipeError
 
     # The file root.
     id = file_root(file)
 
     # Read in the vector distribution PDB file.
-    self.pipe_write("load " + file)
+    pymol.pipe_write("load " + id)
 
 
     # Create a surface.
     ###################
 
     # Select the vector distribution.
-    self.pipe_write("cmd.show('surface', " + `id` + ")")
+    pymol.pipe_write("cmd.show('surface', " + `id` + ")")
 
 
 def view():




Related Messages


Powered by MHonArc, Updated Tue Apr 08 11:00:07 2008