From 8a5d6601c25790b5359974b8e871eba0412695f6 Mon Sep 17 00:00:00 2001 From: zsloan Date: Wed, 28 Oct 2020 17:26:56 -0500 Subject: 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 --- wqflask/wqflask/marker_regression/display_mapping_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit v1.2.3