mailr14865 - /1.3/test_suite/system_tests/scripts/n_state_model/metal_pos_opt.py


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

Header


Content

Posted by edward on October 12, 2011 - 19:16:
Author: bugman
Date: Wed Oct 12 19:16:18 2011
New Revision: 14865

URL: http://svn.gna.org/viewcvs/relax?rev=14865&view=rev
Log:
Clean up of the metal_pos_opt.py system test script.


Modified:
    1.3/test_suite/system_tests/scripts/n_state_model/metal_pos_opt.py

Modified: 1.3/test_suite/system_tests/scripts/n_state_model/metal_pos_opt.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/test_suite/system_tests/scripts/n_state_model/metal_pos_opt.py?rev=14865&r1=14864&r2=14865&view=diff
==============================================================================
--- 1.3/test_suite/system_tests/scripts/n_state_model/metal_pos_opt.py 
(original)
+++ 1.3/test_suite/system_tests/scripts/n_state_model/metal_pos_opt.py Wed 
Oct 12 19:16:18 2011
@@ -11,6 +11,10 @@
 from status import Status; status = Status()
 
 
+# Set up.
+NUM_STR = 3
+SIMS = False
+
 # Path of the alignment data and structure.
 DATA_PATH = status.install_path + 
sep+'test_suite'+sep+'shared_data'+sep+'align_data'+sep+'metal_pos_opt'
 STRUCT_PATH = status.install_path + 
sep+'test_suite'+sep+'shared_data'+sep+'structures'+sep+'lactose'
@@ -19,7 +23,6 @@
 pipe.create('Ln3+ opt', 'N-state')
 
 # Load the structures.
-NUM_STR = 3
 for i in range(1, NUM_STR+1):
     structure.read_pdb(file='lactose_MCMM4_S1_%i.pdb' % i, dir=STRUCT_PATH, 
set_model_num=i, set_mol_name='LE')
 
@@ -141,19 +144,19 @@
 paramag.centre(fix=False)
 minimise('simplex', constraints=False, max_iter=50)
 
-## Monte Carlo simulations.
-#monte_carlo.setup(3)
-#monte_carlo.create_data()
-#monte_carlo.initial_values()
-#minimise('simplex', constraints=False, max_iter=500)
-#monte_carlo.error_analysis()
+# Monte Carlo simulations.
+if SIMS:
+    monte_carlo.setup(3)
+    monte_carlo.create_data()
+    monte_carlo.initial_values()
+    minimise('simplex', constraints=False, max_iter=500)
+    monte_carlo.error_analysis()
 
 # Write out a results file.
 results.write('devnull', force=True)
 
-# Show the tensors.
-align_tensor.display()
-
 # Print the contents of the current data pipe (for debugging Q-values).
 print(cdp)
-print((cdp.align_tensors[0]))
+rdc.calc_q_factors()
+pcs.calc_q_factors()
+print(cdp)




Related Messages


Powered by MHonArc, Updated Wed Oct 12 19:40:02 2011