mailr10742 - /1.3/auto_analyses/stereochem_analysis.py


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

Header


Content

Posted by edward on February 18, 2010 - 17:05:
Author: bugman
Date: Thu Feb 18 17:05:55 2010
New Revision: 10742

URL: http://svn.gna.org/viewcvs/relax?rev=10742&view=rev
Log:
The Grace plots are now being created.

The sorted results files were not been checked for in the results directory.


Modified:
    1.3/auto_analyses/stereochem_analysis.py

Modified: 1.3/auto_analyses/stereochem_analysis.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/auto_analyses/stereochem_analysis.py?rev=10742&r1=10741&r2=10742&view=diff
==============================================================================
--- 1.3/auto_analyses/stereochem_analysis.py (original)
+++ 1.3/auto_analyses/stereochem_analysis.py Thu Feb 18 17:05:55 2010
@@ -182,7 +182,7 @@
         """Generate grace plots of the results."""
 
         # NOE violations.
-        if access("NOE_viol_" + self.configs[0] + "_sorted", F_OK):
+        if access(self.results_dir+sep+"NOE_viol_" + self.configs[0] + 
"_sorted", F_OK):
             # Print out.
             print("Generating NOE violation Grace plots.")
 
@@ -264,7 +264,7 @@
             grace_dist.close()
 
         # RDC Q-factors.
-        if access("Q_factors_" + self.configs[0] + "_sorted", F_OK):
+        if access(self.results_dir+sep+"Q_factors_" + self.configs[0] + 
"_sorted", F_OK):
             # Print out.
             print("Generating RDC Q-factor Grace plots.")
 
@@ -347,7 +347,7 @@
 
 
         # NOE-RDC correlation plot.
-        if access("NOE_viol_" + self.configs[0] + "_sorted", F_OK) and 
access("Q_factors_" + self.configs[0] + "_sorted", F_OK):
+        if access(self.results_dir+sep+"NOE_viol_" + self.configs[0] + 
"_sorted", F_OK) and access(self.results_dir+sep+"Q_factors_" + 
self.configs[0] + "_sorted", F_OK):
             # Print out.
             print("Generating NOE-RDC correlation Grace plots.")
 




Related Messages


Powered by MHonArc, Updated Thu Feb 18 17:20:03 2010