diff options
author | zsloan | 2019-10-18 14:33:37 -0500 |
---|---|---|
committer | zsloan | 2019-10-18 14:33:37 -0500 |
commit | ed550f028b5db1fef57789d15c5f59a413f567f1 (patch) | |
tree | f3196a83efccc641f3639f6688e9ca0b94428383 /wqflask/maintenance/gen_select_dataset.py | |
parent | f35376bc9a44bf3a87a860a8aab00c3f091970ff (diff) | |
download | genenetwork2-ed550f028b5db1fef57789d15c5f59a413f567f1.tar.gz |
Added UniProt link and fixed issue that caused sample lists to not be formed correctly in certain situations
Diffstat (limited to 'wqflask/maintenance/gen_select_dataset.py')
-rw-r--r-- | wqflask/maintenance/gen_select_dataset.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/wqflask/maintenance/gen_select_dataset.py b/wqflask/maintenance/gen_select_dataset.py index be028bdd..4005d423 100644 --- a/wqflask/maintenance/gen_select_dataset.py +++ b/wqflask/maintenance/gen_select_dataset.py @@ -284,13 +284,13 @@ def main(): 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, |