mailr6624 - /1.3/generic_fns/model_selection.py


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

Header


Content

Posted by edward on July 03, 2008 - 21:39:
Author: bugman
Date: Thu Jul  3 21:39:04 2008
New Revision: 6624

URL: http://svn.gna.org/viewcvs/relax?rev=6624&view=rev
Log:
Removed the check for the same sequence data in all pipes.

For flexibility, this check should not occur as some models are sequence 
independent.  And the
checks weren't functional anyway.


Modified:
    1.3/generic_fns/model_selection.py

Modified: 1.3/generic_fns/model_selection.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/model_selection.py?rev=6624&r1=6623&r2=6624&view=diff
==============================================================================
--- 1.3/generic_fns/model_selection.py (original)
+++ 1.3/generic_fns/model_selection.py Thu Jul  3 21:39:04 2008
@@ -25,7 +25,6 @@
 
 # relax module imports.
 from data import Relax_data_store; ds = Relax_data_store()
-from generic_fns.mol_res_spin import same_sequence
 from pipes import switch
 from relax_errors import RelaxError, RelaxPipeError
 from specific_fns.setup import get_specific_fn
@@ -167,9 +166,6 @@
                 model_statistics[pipe] = get_specific_fn('model_stats', 
ds[pipe].pipe_type)
                 skip_function[pipe] = get_specific_fn('skip_function', 
ds[pipe].pipe_type)
 
-                # Check that the sequence is the same in all data pipes.
-                same_sequence(pipes[0][0], pipe)
-
     # All other model selection setup.
     else:
         # Loop over the data pipes.
@@ -182,9 +178,6 @@
             duplicate_data[pipe] = get_specific_fn('duplicate_data', 
ds[pipe].pipe_type)
             model_statistics[pipe] = get_specific_fn('model_stats', 
ds[pipe].pipe_type)
             skip_function[pipe] = get_specific_fn('skip_function', 
ds[pipe].pipe_type)
-
-            # Check that the sequence is the same in all data pipes.
-            same_sequence(pipes[0], pipe)
 
 
     # Number of instances.  If the number is not the same for each data 
pipe, then the minimum




Related Messages


Powered by MHonArc, Updated Thu Jul 03 22:20:14 2008