diff options
author | zsloan | 2021-01-11 13:49:04 -0600 |
---|---|---|
committer | zsloan | 2021-01-11 13:49:04 -0600 |
commit | 6c63b869d047daca44ff5facee44833f52b0d861 (patch) | |
tree | 349f62d42f77c06eda42e736fc951e3edf1fc0db /wqflask | |
parent | 0d96ca92fb45d8bb2a6990f7d830fa9fb8315b0a (diff) | |
download | genenetwork2-6c63b869d047daca44ff5facee44833f52b0d861.tar.gz |
Added something to line accounting for certain BXD individual groups when building the correlation drop-down
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/show_trait/show_trait.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/show_trait/show_trait.py b/wqflask/wqflask/show_trait/show_trait.py index 4c6dd005..9b4a8fa4 100644 --- a/wqflask/wqflask/show_trait/show_trait.py +++ b/wqflask/wqflask/show_trait/show_trait.py @@ -372,7 +372,7 @@ class ShowTrait(object): # We're checking a string here! assert isinstance(this_group, str), "We need a string type thing here" - if this_group[:3] == 'BXD' and this_group != "BXD-Longevity": + if this_group[:3] == 'BXD' and this_group != "BXD-Longevity" and this_group != "BXD-AE": this_group = 'BXD' if this_group: |