diff options
author | zsloan | 2019-06-24 12:09:35 -0500 |
---|---|---|
committer | zsloan | 2019-06-24 12:09:35 -0500 |
commit | 4a7c35204863066dc387637bd0f8af7d274cde55 (patch) | |
tree | 29ad64af9f9b3b344e7f52304a572a4331c28ef2 /wqflask/base | |
parent | 172bf33d20d6f42650b415571c1185af4cbd22c5 (diff) | |
download | genenetwork2-4a7c35204863066dc387637bd0f8af7d274cde55.tar.gz |
Got non-LOCO GEMMA mapping working with gemma-wrapper (so caching should work for that now)
Fixed position digits and row highlighting on interval analyst table
Updated default MAF to 0.05
Updated footer text
Diffstat (limited to 'wqflask/base')
-rw-r--r-- | wqflask/base/data_set.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py index 4fee5c7a..d766e284 100644 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -433,7 +433,7 @@ def datasets(group_name, this_group = None): and InbredSet.Name like %s and ProbeSetFreeze.public > %s and ProbeSetFreeze.confidentiality < 1 - ORDER BY Tissue.Name) + ORDER BY Tissue.Name, ProbeSetFreeze.OrderList DESC) ''' % (group_name, webqtlConfig.PUBLICTHRESH, group_name, webqtlConfig.PUBLICTHRESH, "'" + group_name + "'", webqtlConfig.PUBLICTHRESH)) |