about summary refs log tree commit diff
diff options
context:
space:
mode:
authorzsloan2019-10-09 16:06:14 -0500
committerzsloan2019-10-09 16:06:14 -0500
commitf80b5e760cafa82745307774998f7ae9fdf66a19 (patch)
tree64f1c63058e2784abf6c5ccd919e3cec2c2266e4
parent5318f317b592698423f26763a14a71588344e608 (diff)
downloadgenenetwork2-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.py14
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,