mailr26988 - /trunk/user_functions/deselect.py


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

Header


Content

Posted by tlinnet on December 07, 2014 - 13:12:
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"




Related Messages


Powered by MHonArc, Updated Sun Dec 07 13:20:01 2014