diff options
author | zsloan | 2020-10-27 19:31:45 -0500 |
---|---|---|
committer | zsloan | 2020-10-27 19:31:45 -0500 |
commit | 8d16ed8dfdbf17d2f7e888819f13b04d98049388 (patch) | |
tree | d72eb79c8175d41ea04c186a20f9da707eced5e1 /wqflask | |
parent | 4dac73ae7f3cabe037e44892a12600f0e4625ca5 (diff) | |
download | genenetwork2-8d16ed8dfdbf17d2f7e888819f13b04d98049388.tar.gz |
Cast ProbeSet description as binary to fix encoding issue on global search page
* wqflask/wqflask/gsearch.py - Cast ProbeSet description as binary
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/gsearch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/gsearch.py b/wqflask/wqflask/gsearch.py index 5b26e372..9e46c0c5 100644 --- a/wqflask/wqflask/gsearch.py +++ b/wqflask/wqflask/gsearch.py @@ -35,7 +35,7 @@ class GSearch(object): ProbeSetFreeze.FullName AS probesetfreeze_fullname, ProbeSet.Name AS probeset_name, ProbeSet.Symbol AS probeset_symbol, - ProbeSet.`description` AS probeset_description, + CAST(ProbeSet.`description` AS BINARY) AS probeset_description, ProbeSet.Chr AS chr, ProbeSet.Mb AS mb, ProbeSetXRef.Mean AS mean, |