From 7938d8c6cbdfe866ebf9ec62dec0fe5c43cf2d6f Mon Sep 17 00:00:00 2001 From: Zachary Sloan Date: Wed, 12 Jun 2013 22:45:57 +0000 Subject: Fixed a couple issues with the template that caused the regular search results and show trait page to not display --- wqflask/base/data_set.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'wqflask/base') diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py index d7328441..9b0a3dcc 100755 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -735,8 +735,10 @@ class MrnaAssayDataSet(DataSet): trait_location_value = 1000000 if this_trait.chr and this_trait.mb: + print("this_trait.chr is:", this_trait.chr) + print("this_trait.mb is:", this_trait.mb) try: - trait_location_value = int(this_trait.chr)*1000 + this_trait.mb + trait_location_value = float(this_trait.chr)*1000 + float(this_trait.mb) except: if this_trait.chr.upper() == 'X': trait_location_value = 20*1000 + this_trait.mb -- cgit 1.4.1