diff options
author | zsloan | 2017-06-12 15:52:02 +0000 |
---|---|---|
committer | zsloan | 2017-06-12 15:52:02 +0000 |
commit | ad7a2baa50e602c613fd4eba2f41cae7a2b75577 (patch) | |
tree | cb89930fa38388a978952003970b0219295731ed /wqflask/base/trait.py | |
parent | dbf1c2bddf92cbc93308de0b1ae77ff2e81e8f6a (diff) | |
download | genenetwork2-ad7a2baa50e602c613fd4eba2f41cae7a2b75577.tar.gz |
Fixed issue where 0.0 values would be converted into X's on the trait page
Diffstat (limited to 'wqflask/base/trait.py')
-rw-r--r-- | wqflask/base/trait.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/wqflask/base/trait.py b/wqflask/base/trait.py index 33a4efe9..acc055d8 100644 --- a/wqflask/base/trait.py +++ b/wqflask/base/trait.py @@ -292,7 +292,6 @@ def retrieve_sample_data(trait, dataset, samplelist=None): name, value, variance, num_cases, name2 = item if not samplelist or (samplelist and name in samplelist): trait.data[name] = webqtlCaseData(*item) #name, value, variance, num_cases) - return trait def convert_location_to_value(chromosome, mb): |