diff options
author | zsloan | 2016-02-04 19:01:16 +0000 |
---|---|---|
committer | zsloan | 2016-02-04 19:01:16 +0000 |
commit | 7d5dba3e38892475edec80c922f06bcb40b0dcb3 (patch) | |
tree | 0e6857251bf4a805c3c5c8ba4651a72b0ad89de4 /wqflask/base | |
parent | d8beaebcc8e6a2d9a0ed16c479aeb8cb58989156 (diff) | |
download | genenetwork2-7d5dba3e38892475edec80c922f06bcb40b0dcb3.tar.gz |
Most importantly, this commit fixes an issue that caused the trait page to not work because of the new dataset_menu_structure.json file
An Intro section is also added to the header, though for the time being its contents aren't populated and the edit option isn't working
Diffstat (limited to 'wqflask/base')
-rwxr-xr-x | 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 5603fe2e..68a2a185 100755 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -91,7 +91,7 @@ class Dataset_Types(object): for dataset in data['datasets'][species][group][dataset_type]: #print("dataset is:", dataset) - short_dataset_name = dataset[0] + short_dataset_name = dataset[1] if dataset_type == "Phenotypes": new_type = "Publish" elif dataset_type == "Genotypes": |