diff options
author | Zachary Sloan | 2013-04-09 19:36:43 +0000 |
---|---|---|
committer | Zachary Sloan | 2013-04-09 19:36:43 +0000 |
commit | c7c306c69254ca49ddeccc495a8a096fcf03974d (patch) | |
tree | d022224c537e4b297836e94209a292b17c6765a8 /wqflask/base/data_set.py | |
parent | 27d0c86528fdbeaed56a7f5eaa71a950c522f183 (diff) | |
download | genenetwork2-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-x | wqflask/base/data_set.py | 2 |
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): |