aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2020-10-28 17:26:56 -0500
committerzsloan2020-10-28 17:26:56 -0500
commit8a5d6601c25790b5359974b8e871eba0412695f6 (patch)
tree4b015a15b153e85f2652633d08c16df0633d1201 /wqflask
parent4dac73ae7f3cabe037e44892a12600f0e4625ca5 (diff)
downloadgenenetwork2-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
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/marker_regression/display_mapping_results.py2
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")