select_model(self,
model=None,
spin_id=None)
| source code
|
Function for the selection of a preset model-free model.
Keyword Arguments
~~~~~~~~~~~~~~~~~
model: The name of the preset model.
The preset models
~~~~~~~~~~~~~~~~~
The standard preset model-free models are
'm0' = {},
'm1' = {S2},
'm2' = {S2, te},
'm3' = {S2, Rex},
'm4' = {S2, te, Rex},
'm5' = {S2f, S2, ts},
'm6' = {S2f, tf, S2, ts},
'm7' = {S2f, S2, ts, Rex},
'm8' = {S2f, tf, S2, ts, Rex},
'm9' = {Rex}.
The preset model-free models with optimisation of the CSA value are
'm10' = {CSA},
'm11' = {CSA, S2},
'm12' = {CSA, S2, te},
'm13' = {CSA, S2, Rex},
'm14' = {CSA, S2, te, Rex},
'm15' = {CSA, S2f, S2, ts},
'm16' = {CSA, S2f, tf, S2, ts},
'm17' = {CSA, S2f, S2, ts, Rex},
'm18' = {CSA, S2f, tf, S2, ts, Rex},
'm19' = {CSA, Rex}.
The preset model-free models with optimisation of the bond length are
'm20' = {r},
'm21' = {r, S2},
'm22' = {r, S2, te},
'm23' = {r, S2, Rex},
'm24' = {r, S2, te, Rex},
'm25' = {r, S2f, S2, ts},
'm26' = {r, S2f, tf, S2, ts},
'm27' = {r, S2f, S2, ts, Rex},
'm28' = {r, S2f, tf, S2, ts, Rex},
'm29' = {r, CSA, Rex}.
The preset model-free models with both optimisation of the bond length and CSA are
'm30' = {r, CSA},
'm31' = {r, CSA, S2},
'm32' = {r, CSA, S2, te},
'm33' = {r, CSA, S2, Rex},
'm34' = {r, CSA, S2, te, Rex},
'm35' = {r, CSA, S2f, S2, ts},
'm36' = {r, CSA, S2f, tf, S2, ts},
'm37' = {r, CSA, S2f, S2, ts, Rex},
'm38' = {r, CSA, S2f, tf, S2, ts, Rex},
'm39' = {r, CSA, Rex}.
Warning: The models in the thirties range fail when using standard R1, R2, and NOE
relaxation data. This is due to the extreme flexibly of these models where a change in the
parameter 'r' is compensated by a corresponding change in the parameter 'csa' and
vice versa.
Additional preset model-free models, which are simply extensions of the above models with
the addition of a local tm parameter are:
'tm0' = {tm},
'tm1' = {tm, S2},
'tm2' = {tm, S2, te},
'tm3' = {tm, S2, Rex},
'tm4' = {tm, S2, te, Rex},
'tm5' = {tm, S2f, S2, ts},
'tm6' = {tm, S2f, tf, S2, ts},
'tm7' = {tm, S2f, S2, ts, Rex},
'tm8' = {tm, S2f, tf, S2, ts, Rex},
'tm9' = {tm, Rex}.
The preset model-free models with optimisation of the CSA value are
'tm10' = {tm, CSA},
'tm11' = {tm, CSA, S2},
'tm12' = {tm, CSA, S2, te},
'tm13' = {tm, CSA, S2, Rex},
'tm14' = {tm, CSA, S2, te, Rex},
'tm15' = {tm, CSA, S2f, S2, ts},
'tm16' = {tm, CSA, S2f, tf, S2, ts},
'tm17' = {tm, CSA, S2f, S2, ts, Rex},
'tm18' = {tm, CSA, S2f, tf, S2, ts, Rex},
'tm19' = {tm, CSA, Rex}.
The preset model-free models with optimisation of the bond length are
'tm20' = {tm, r},
'tm21' = {tm, r, S2},
'tm22' = {tm, r, S2, te},
'tm23' = {tm, r, S2, Rex},
'tm24' = {tm, r, S2, te, Rex},
'tm25' = {tm, r, S2f, S2, ts},
'tm26' = {tm, r, S2f, tf, S2, ts},
'tm27' = {tm, r, S2f, S2, ts, Rex},
'tm28' = {tm, r, S2f, tf, S2, ts, Rex},
'tm29' = {tm, r, CSA, Rex}.
The preset model-free models with both optimisation of the bond length and CSA are
'tm30' = {tm, r, CSA},
'tm31' = {tm, r, CSA, S2},
'tm32' = {tm, r, CSA, S2, te},
'tm33' = {tm, r, CSA, S2, Rex},
'tm34' = {tm, r, CSA, S2, te, Rex},
'tm35' = {tm, r, CSA, S2f, S2, ts},
'tm36' = {tm, r, CSA, S2f, tf, S2, ts},
'tm37' = {tm, r, CSA, S2f, S2, ts, Rex},
'tm38' = {tm, r, CSA, S2f, tf, S2, ts, Rex},
'tm39' = {tm, r, CSA, Rex}.
Spin identification string
~~~~~~~~~~~~~~~~~~~~~~~~~~
If 'spin_id' is supplied then the model will only be selected for the corresponding spins.
Otherwise the model will be selected for all spins.
Examples
~~~~~~~~
To pick model 'm1' for all selected spins, type:
relax> model_free.select_model('m1')
relax> model_free.select_model(model='m1')
|