aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base/data_set.py
diff options
context:
space:
mode:
authorzsloan2016-03-15 17:07:28 +0000
committerzsloan2016-03-15 17:07:28 +0000
commitae98a066a0937295543c7c57095c2a7b0c855ecd (patch)
treeeea19be5c31a98ffed9047d4ee0873ca268b8968 /wqflask/base/data_set.py
parent98293e5a4b68565bc0a26240d111f55c60907006 (diff)
downloadgenenetwork2-ae98a066a0937295543c7c57095c2a7b0c855ecd.tar.gz
Fixed the mapping figure track that lets you zoom into a smaller range
Fixed the third party mapping figure tracks to refer to the correct chromosome (before it was always 1)
Diffstat (limited to 'wqflask/base/data_set.py')
-rwxr-xr-xwqflask/base/data_set.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py
index aaea7ec3..6cabadb1 100755
--- a/wqflask/base/data_set.py
+++ b/wqflask/base/data_set.py
@@ -166,7 +166,6 @@ class Markers(object):
for marker in markers:
if (marker['chr'] != "X") and (marker['chr'] != "Y"):
marker['chr'] = int(marker['chr'])
- print("Mb:", marker['Mb'])
marker['Mb'] = float(marker['Mb'])
self.markers = markers