aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/webqtlUtil.py
diff options
context:
space:
mode:
authorPjotr Prins2016-06-17 06:15:59 +0000
committerPjotr Prins2016-06-17 06:15:59 +0000
commit9ed3c1e6ed99c56d77fd5d90ff42f9acfe7ace68 (patch)
treefabca0ec5073e2c17da425eeeb7e40a9e15c564f /wqflask/utility/webqtlUtil.py
parent497b72d3496b9368167616774e58250598d7bd83 (diff)
downloadgenenetwork2-9ed3c1e6ed99c56d77fd5d90ff42f9acfe7ace68.tar.gz
Removed trailing spaces in .py and .js files
Diffstat (limited to 'wqflask/utility/webqtlUtil.py')
-rwxr-xr-xwqflask/utility/webqtlUtil.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/wqflask/utility/webqtlUtil.py b/wqflask/utility/webqtlUtil.py
index 1108614b..4fc978f5 100755
--- a/wqflask/utility/webqtlUtil.py
+++ b/wqflask/utility/webqtlUtil.py
@@ -129,7 +129,7 @@ def inverseCumul(p):
return None
if p>0 and p < 1:
- e = 0.5 * erfcc(-x/sqrt(2)) - p
+ e = 0.5 * erfcc(-x/sqrt(2)) - p
u = e * sqrt(2*pi) * exp(x*x/2)
x = x - u/(1 + x*u/2)
return x
@@ -318,10 +318,10 @@ def FloatList2String(lst):
def ListNotNull(lst):
'''Obsolete - Use built in function any (or all or whatever)
-
-
+
+
Determine if the elements in a list are all null
-
+
'''
for item in lst:
if item is not None: