diff options
author | zsloan | 2019-10-09 16:06:14 -0500 |
---|---|---|
committer | zsloan | 2019-10-09 16:06:14 -0500 |
commit | f80b5e760cafa82745307774998f7ae9fdf66a19 (patch) | |
tree | 64f1c63058e2784abf6c5ccd919e3cec2c2266e4 | |
parent | 5318f317b592698423f26763a14a71588344e608 (diff) | |
download | genenetwork2-f80b5e760cafa82745307774998f7ae9fdf66a19.tar.gz |
Removed All Species option from search dropdown since it wasn't working and isn't necessary
-rw-r--r-- | wqflask/wqflask/api/gen_menu.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/wqflask/wqflask/api/gen_menu.py b/wqflask/wqflask/api/gen_menu.py index 5182ea13..d7a59f29 100644 --- a/wqflask/wqflask/api/gen_menu.py +++ b/wqflask/wqflask/api/gen_menu.py @@ -22,13 +22,13 @@ def gen_dropdown_json(): types = get_types(groups) datasets = get_datasets(types) - species.append(('All Species', 'All Species')) - groups['All Species'] = [('All Groups', 'All Groups')] - types['All Species'] = {} - types['All Species']['All Groups'] = [('Phenotypes', 'Phenotypes')] - datasets['All Species'] = {} - datasets['All Species']['All Groups'] = {} - datasets['All Species']['All Groups']['Phenotypes'] = [('All Phenotypes','All Phenotypes')] + #species.append(('All Species', 'All Species')) + #groups['All Species'] = [('All Groups', 'All Groups')] + #types['All Species'] = {} + #types['All Species']['All Groups'] = [('Phenotypes', 'Phenotypes')] + #datasets['All Species'] = {} + #datasets['All Species']['All Groups'] = {} + #datasets['All Species']['All Groups']['Phenotypes'] = [('All Phenotypes','All Phenotypes')] data = dict(species=species, groups=groups, |