diff options
author | Zachary Sloan | 2012-10-03 16:02:34 -0500 |
---|---|---|
committer | Zachary Sloan | 2012-10-03 16:02:34 -0500 |
commit | f309b5144bfedc4aeaab0193f5be24a71737fc28 (patch) | |
tree | 19797082603558af36fc49eeaf1869edb97ec9b3 /web/webqtl | |
parent | fe9082941a9c3a7815fb986a4717144f3ae7c021 (diff) | |
download | genenetwork2-f309b5144bfedc4aeaab0193f5be24a71737fc28.tar.gz |
Changed css classes used in trait data table and wrote coffeescript code that
grabs the list of samples with an attribute value matching the value the user
chose to exclude by.
Added HTML5 data properties to table cells as data-column_name to use when
excluding samples.
Diffstat (limited to 'web/webqtl')
-rwxr-xr-x | web/webqtl/collection/ExportSelectionDetailInfoPage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/webqtl/collection/ExportSelectionDetailInfoPage.py b/web/webqtl/collection/ExportSelectionDetailInfoPage.py index a61b6f6e..7238c797 100755 --- a/web/webqtl/collection/ExportSelectionDetailInfoPage.py +++ b/web/webqtl/collection/ExportSelectionDetailInfoPage.py @@ -128,7 +128,7 @@ class ExportSelectionDetailInfoPage(templatePage): count = count + 1 except: pass - if count = 0: + if count == 0: mean = 0 else: mean = sum/count |