diff options
author | zsloan | 2020-10-28 17:30:00 -0500 |
---|---|---|
committer | GitHub | 2020-10-28 17:30:00 -0500 |
commit | 70ac7df94067a2d45a6d3498a85fe27014b159d6 (patch) | |
tree | 4c214fafc9134e68f0962452a8dbe85abeb71280 /wqflask | |
parent | 7410a1f4fa8628fa087a1fb682a9d6bb54160f68 (diff) | |
parent | 8a5d6601c25790b5359974b8e871eba0412695f6 (diff) | |
download | genenetwork2-70ac7df94067a2d45a6d3498a85fe27014b159d6.tar.gz |
Merge pull request #470 from zsloan/mapping_chr_view_fix
Fixed error when zooming into a chromosome when mapping
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/marker_regression/display_mapping_results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/marker_regression/display_mapping_results.py b/wqflask/wqflask/marker_regression/display_mapping_results.py index aa3f8518..65eba7e3 100644 --- a/wqflask/wqflask/marker_regression/display_mapping_results.py +++ b/wqflask/wqflask/marker_regression/display_mapping_results.py @@ -2809,7 +2809,7 @@ class DisplayMappingResults(object): f"end={theGO['TxEnd']}&" f"geneName={theGO['GeneSymbol']}&" f"s1={self.diffCol[0]}&s2=%d"), - theGO["snpCount"] # The text to display + str(theGO["snpCount"]) # The text to display ) snpString.set_blank_target() snpString.set_attribute("class", "normalsize") |