Author: tlinnet
Date: Sun Dec 7 13:12:56 2014
New Revision: 26988
URL: http://svn.gna.org/viewcvs/relax?rev=26988&view=rev
Log:
Small fix for standard values in user function deselect.sn_ratio.
The standard values will deselect spÃins which have at least one signal to
noise ratio which is lower than 10.0.
Modified:
trunk/user_functions/deselect.py
Modified: trunk/user_functions/deselect.py
URL:
http://svn.gna.org/viewcvs/relax/trunk/user_functions/deselect.py?rev=26988&r1=26987&r2=26988&view=diff
==============================================================================
--- trunk/user_functions/deselect.py (original)
+++ trunk/user_functions/deselect.py Sun Dec 7 13:12:56 2014
@@ -31,8 +31,7 @@
# relax module imports.
from graphics import WIZARD_IMAGE_PATH
-from pipe_control import selection
-from pipe_control import spectrum
+from pipe_control import selection, spectrum
from user_functions.data import Uf_info; uf_info = Uf_info()
from user_functions.objects import Desc_container
@@ -292,7 +291,7 @@
uf.display = True
uf.add_keyarg(
name = "ratio",
- default = 1.0,
+ default = 10.0,
py_type = "float",
desc_short = "ratio",
desc = "The signal to noise ratio to compare to."
@@ -326,7 +325,7 @@
name = "all_sn",
default = False,
py_type = "bool",
- desc_short = "all spin S/N flag",
+ desc_short = "all S/N per spin flag",
desc = "A flag specifying if all the signal to noise ratios per spin
should match the comparison operator, of if just a single comparison match is
enough."
)
# Description.
@@ -336,8 +335,8 @@
# Prompt examples.
uf.desc.append(Desc_container("Prompt examples"))
uf.desc[-1].add_paragraph("To deselect all spins with a signal to noise ratio
lower than 10.0:")
-uf.desc[-1].add_prompt("relax> deselect.spin(ratio=10.0, operation='<')")
-uf.desc[-1].add_prompt("relax> deselect.spin(ratio=10.0, operation='<',
all_sn=True)")
+uf.desc[-1].add_prompt("relax> deselect.sn_ratio(ratio=10.0, operation='<')")
+uf.desc[-1].add_prompt("relax> deselect.sn_ratio(ratio=10.0, operation='<',
all_sn=True)")
uf.backend = spectrum.sn_ratio_deselection
uf.menu_text = "&sn_ratio"
uf.gui_icon = "relax.fid"
_______________________________________________
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