diff options
author | zsloan | 2020-10-28 17:26:56 -0500 |
---|---|---|
committer | zsloan | 2020-10-28 17:26:56 -0500 |
commit | 8a5d6601c25790b5359974b8e871eba0412695f6 (patch) | |
tree | 4b015a15b153e85f2652633d08c16df0633d1201 | |
parent | 4dac73ae7f3cabe037e44892a12600f0e4625ca5 (diff) | |
download | genenetwork2-8a5d6601c25790b5359974b8e871eba0412695f6.tar.gz |
A non-string being used as a paramter in HT.Link caused an error after the Python3 switchover, so I converted it to a string
* wqflask/wqflask/marker_regression/display_mapping_results.py - cast theGO["snpCount"] as a string
-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") |