diff options
author | zsloan | 2016-03-15 17:07:28 +0000 |
---|---|---|
committer | zsloan | 2016-03-15 17:07:28 +0000 |
commit | ae98a066a0937295543c7c57095c2a7b0c855ecd (patch) | |
tree | eea19be5c31a98ffed9047d4ee0873ca268b8968 /wqflask/base/data_set.py | |
parent | 98293e5a4b68565bc0a26240d111f55c60907006 (diff) | |
download | genenetwork2-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-x | wqflask/base/data_set.py | 1 |
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 |