diff options
author | zsloan | 2016-05-10 23:27:36 +0000 |
---|---|---|
committer | zsloan | 2016-05-10 23:27:36 +0000 |
commit | fdfd2a492d11e76aa8179d0dc799a8b1d45399bb (patch) | |
tree | a70457be52cea7dd39aaa3e05fde9879b88c4305 /wqflask/utility | |
parent | b7cabb198f7d3c47074da3e6d0d523281aad7e13 (diff) | |
download | genenetwork2-fdfd2a492d11e76aa8179d0dc799a8b1d45399bb.tar.gz |
Correlation successfully uses materialized views and parallel processing, but for some reason is taking an immense amount of time so need to troubleshoot that
Changed order of mapping options to display Interval Mapping first
Changed some links to no longer open in new tab/window
Diffstat (limited to 'wqflask/utility')
-rwxr-xr-x | wqflask/utility/webqtlUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/webqtlUtil.py b/wqflask/utility/webqtlUtil.py index f842dde0..1108614b 100755 --- a/wqflask/utility/webqtlUtil.py +++ b/wqflask/utility/webqtlUtil.py @@ -509,7 +509,7 @@ def calCorrelationRank(xVals,yVals,N): j = 0 for i in range(len(xVals)): - if xVals[i]!= None and yVals[i]!= None: + if (xVals[i]!= None and yVals[i]!= None) and (xVals[i] != "None" and yVals[i] != "None"): XX.append((j,xVals[i])) YY.append((j,yVals[i])) j = j+1 |