aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/webqtlUtil.py
diff options
context:
space:
mode:
authorPjotr Prins2016-06-17 06:48:01 +0000
committerPjotr Prins2016-06-17 06:48:01 +0000
commit93e3878c8b97ecbf28630e4bb3733a29f4cf45aa (patch)
treeef92de7c75b7899b406e99c97006a7e2b20bd86b /wqflask/utility/webqtlUtil.py
parenteb84f7c0e384e08b810e052fd3935f6d977b7ea2 (diff)
parent10df36b60273d81678f6630c07a2d8e5a6409282 (diff)
downloadgenenetwork2-93e3878c8b97ecbf28630e4bb3733a29f4cf45aa.tar.gz
Conflict
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: