diff options
author | zsloan | 2022-01-18 21:15:01 +0000 |
---|---|---|
committer | zsloan | 2022-01-27 13:45:09 -0600 |
commit | 0761eb67c601efe7d285e556fb1a07d52398eb6b (patch) | |
tree | 14869d954b409f3b0dc5fb0d67ce031a20f4b711 | |
parent | 2e4442e0d552200a79769680bdcd1dab9ae98078 (diff) | |
download | genenetwork2-0761eb67c601efe7d285e556fb1a07d52398eb6b.tar.gz |
Fix issue where Geno query was fetching from the chr_num column instead of the Chr column (and the chr_num column isn't always populated for certain Genotype datasets)
-rw-r--r-- | wqflask/wqflask/do_search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/do_search.py b/wqflask/wqflask/do_search.py index 99272ee3..ee5a4d91 100644 --- a/wqflask/wqflask/do_search.py +++ b/wqflask/wqflask/do_search.py @@ -343,7 +343,7 @@ class GenotypeSearch(DoSearch): GenoFreeze.createtime as thistable, Geno.Name as Geno_Name, Geno.Source2 as Geno_Source2, - Geno.chr_num as Geno_chr_num, + Geno.Chr as Geno_Chr, Geno.Mb as Geno_Mb FROM GenoXRef, GenoFreeze, Geno """ |