mailr14282 - /branches/gui_testing/generic_fns/structure/geometric.py


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

Header


Content

Posted by edward on August 09, 2011 - 11:18:
Author: bugman
Date: Tue Aug  9 11:18:15 2011
New Revision: 14282

URL: http://svn.gna.org/viewcvs/relax?rev=14282&view=rev
Log:
Fixes for the file paths to the tensor PDB geometric objects in 
cdp.result_files.


Modified:
    branches/gui_testing/generic_fns/structure/geometric.py

Modified: branches/gui_testing/generic_fns/structure/geometric.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/generic_fns/structure/geometric.py?rev=14282&r1=14281&r2=14282&view=diff
==============================================================================
--- branches/gui_testing/generic_fns/structure/geometric.py (original)
+++ branches/gui_testing/generic_fns/structure/geometric.py Tue Aug  9 
11:18:15 2011
@@ -23,6 +23,7 @@
 # Python module imports.
 from math import cos, pi, sin
 from numpy import arccos, array, dot, eye, float64, transpose, zeros
+from os import getcwd
 from string import ascii_uppercase
 from warnings import warn
 
@@ -33,7 +34,7 @@
 from internal import Internal
 from maths_fns.rotation_matrix import two_vect_to_R
 from relax_errors import RelaxError, RelaxNoPdbError, RelaxNoSequenceError, 
RelaxNoTensorError, RelaxNoVectorsError
-from relax_io import open_write_file
+from relax_io import get_file_path, open_write_file
 from relax_warnings import RelaxWarning
 
 
@@ -573,7 +574,9 @@
     # Add the file to the results file list.
     if not hasattr(cdp, 'result_files'):
         cdp.result_files = []
-    cdp.result_files.append(['Diffusion tensor PDB', tensor_pdb_path])
+    if dir == None:
+        dir = getcwd()
+    cdp.result_files.append(['Diffusion tensor PDB', get_file_path(file, 
dir)])
 
 
 def create_vector_dist(length=None, symmetry=True, file=None, dir=None, 
force=False):
@@ -714,7 +717,9 @@
     # Add the file to the results file list.
     if not hasattr(cdp, 'result_files'):
         cdp.result_files = []
-    cdp.result_files.append(['Vector distribution PDB', tensor_pdb_path])
+    if dir == None:
+        dir = getcwd()
+    cdp.result_files.append(['Vector distribution PDB', get_file_path(file, 
dir)])
 
 
 def generate_vector_dist(mol=None, res_name=None, res_num=None, chain_id='', 
centre=zeros(3, float64), R=eye(3), warp=eye(3), limit_check=None, scale=1.0, 
inc=20, distribution='uniform', debug=False):




Related Messages


Powered by MHonArc, Updated Tue Aug 09 12:00:02 2011