Awesome, it looks like this series of commits has solved the problem
:)  Maybe I'll soon release relax 3.1.6 with these fixes, all the
other recent bug fixes, and the tutorial for using the relaxation
dispersion analysis in the GUI!

Cheers,

Edward


On 25 February 2014 15:05,  <[email protected]> wrote:
> Author: tlinnet
> Date: Tue Feb 25 15:05:06 2014
> New Revision: 22310
>
> URL: http://svn.gna.org/viewcvs/relax?rev=22310&view=rev
> Log:
> Modified check_exp_type_fixed_time to loop over id's and use 
> count_relax_times for each id.
>
> Regarding bug #21665, (https://gna.org/bugs/?21665) - Running a CPMG analysis 
> with two fields at two delay times.
>
> Modified:
>     trunk/specific_analyses/relax_disp/checks.py
>
> Modified: trunk/specific_analyses/relax_disp/checks.py
> URL: 
> http://svn.gna.org/viewcvs/relax/trunk/specific_analyses/relax_disp/checks.py?rev=22310&r1=22309&r2=22310&view=diff
> ==============================================================================
> --- trunk/specific_analyses/relax_disp/checks.py (original)
> +++ trunk/specific_analyses/relax_disp/checks.py Tue Feb 25 15:05:06 2014
> @@ -103,12 +103,13 @@
>      @raises RelaxError: If exponential curves are present.
>      """
>
> -    # Get the times.
> -    times = get_times()
> -
> -    # Loop over all experiment types.
> -    for exp_type in times:
> -        if len(times[exp_type]) > 1:
> +    # Loop over the id's.
> +    for id in cdp.exp_type.keys():
> +        # Get the exp_type and frq.
> +        exp_type = cdp.exp_type[id]
> +        frq = cdp.spectrometer_frq[id]
> +
> +        if specific_analyses.relax_disp.disp_data.count_relax_times(exp_type 
> = exp_type, frq = frq, ei = cdp.exp_type_list.index(cdp.exp_type[id])) > 1:
>              raise RelaxError("The experiment '%s' is not of the fixed 
> relaxation time period data type." % exp_type)
>
>
>
>
> _______________________________________________
> relax (http://www.nmr-relax.com)
>
> This is the relax-commits mailing list
> [email protected]
>
> To unsubscribe from this list, get a password
> reminder, or change your subscription options,
> visit the list information page at
> https://mail.gna.org/listinfo/relax-commits

_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-devel mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-devel

Reply via email to