I suppose this would be the safest way to give the user feedback. Bye,
Edward On 31 July 2014 15:12, <[email protected]> wrote: > Author: tlinnet > Date: Thu Jul 31 15:12:15 2014 > New Revision: 24877 > > URL: http://svn.gna.org/viewcvs/relax?rev=24877&view=rev > Log: > Added check function to plot_disp_curves, to check that CPMG exptypes are not > interpolated against offset, which is not implemented. > > sr #3124(https://gna.org/support/?3124): Grace graphs production for R1rho > analysis with R2_eff as function of Omega_eff. > sr #3138(https://gna.org/support/?3138): Interpolating theta through > spin-lock offset [Omega], rather than spin-lock field strength [w1]. > > Modified: > branches/r1rho_plotting/specific_analyses/relax_disp/data.py > > Modified: branches/r1rho_plotting/specific_analyses/relax_disp/data.py > URL: > http://svn.gna.org/viewcvs/relax/branches/r1rho_plotting/specific_analyses/relax_disp/data.py?rev=24877&r1=24876&r2=24877&view=diff > ============================================================================== > --- branches/r1rho_plotting/specific_analyses/relax_disp/data.py > (original) > +++ branches/r1rho_plotting/specific_analyses/relax_disp/data.py Thu > Jul 31 15:12:15 2014 > @@ -78,7 +78,7 @@ > from pipe_control.spectrometer import check_frequency, get_frequency > from pipe_control import value > import specific_analyses > -from specific_analyses.relax_disp.checks import check_exp_type, > check_mixed_curve_types > +from specific_analyses.relax_disp.checks import check_exp_type, > check_interpolate_offset_cpmg_model, check_mixed_curve_types > from specific_analyses.relax_disp.variables import EXP_TYPE_CPMG_DQ, > EXP_TYPE_CPMG_MQ, EXP_TYPE_CPMG_PROTON_MQ, EXP_TYPE_CPMG_PROTON_SQ, > EXP_TYPE_CPMG_SQ, EXP_TYPE_CPMG_ZQ, EXP_TYPE_DESC_CPMG_DQ, > EXP_TYPE_DESC_CPMG_MQ, EXP_TYPE_DESC_CPMG_PROTON_MQ, > EXP_TYPE_DESC_CPMG_PROTON_SQ, EXP_TYPE_DESC_CPMG_SQ, EXP_TYPE_DESC_CPMG_ZQ, > EXP_TYPE_DESC_R1RHO, EXP_TYPE_LIST, EXP_TYPE_LIST_CPMG, EXP_TYPE_LIST_R1RHO, > EXP_TYPE_R1RHO, MODEL_B14, MODEL_B14_FULL, MODEL_DPL94, MODEL_LIST_MMQ, > MODEL_LIST_NUMERIC_CPMG, MODEL_LIST_R1RHO, MODEL_LIST_R1RHO_FULL, MODEL_MP05, > MODEL_NS_R1RHO_2SITE, MODEL_PARAMS, MODEL_R2EFF, MODEL_TAP03, MODEL_TP02, > PARAMS_R20 > from stat import S_IRWXU, S_IRGRP, S_IROTH > from os import chmod, sep > @@ -1795,6 +1795,10 @@ > # Checks. > pipes.test() > check_mol_res_spin_data() > + > + # Check if interpolating against offset for CPMG models. > + # This is currently not implemented, and will raise an error. > + check_interpolate_offset_cpmg_model(interpolate=interpolate) > > # 1H MMQ flag. > proton_mmq_flag = has_proton_mmq_cpmg() > > > _______________________________________________ > 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

