aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base/data_set.py
diff options
context:
space:
mode:
authorZachary Sloan2013-04-09 19:36:43 +0000
committerZachary Sloan2013-04-09 19:36:43 +0000
commitc7c306c69254ca49ddeccc495a8a096fcf03974d (patch)
treed022224c537e4b297836e94209a292b17c6765a8 /wqflask/base/data_set.py
parent27d0c86528fdbeaed56a7f5eaa71a950c522f183 (diff)
downloadgenenetwork2-c7c306c69254ca49ddeccc495a8a096fcf03974d.tar.gz
Nick's code works fine with human data
Added option to limit results based on lod score (which also changes the y-axis of the plot)
Diffstat (limited to 'wqflask/base/data_set.py')
-rwxr-xr-xwqflask/base/data_set.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py
index 16bc4ba4..111597a9 100755
--- a/wqflask/base/data_set.py
+++ b/wqflask/base/data_set.py
@@ -83,8 +83,6 @@ class Markers(object):
marker['lod_score'] = -math.log10(marker['p_value'])
#Using -log(p) for the LRS; need to ask Rob how he wants to get LRS from p-values
marker['lrs_value'] = -math.log10(marker['p_value']) * 4.61
-
-
class HumanMarkers(Markers):