diff options
author | zsloan | 2019-10-12 14:04:19 -0500 |
---|---|---|
committer | zsloan | 2019-10-12 14:04:19 -0500 |
commit | e3ebbb26cd20aeb096d9b735dd160604894efbce (patch) | |
tree | 8e7ffe013937d6637f1f4c203e06ed56a579d38d /wqflask | |
parent | fa592507a55e8be7a7916c82dac6c093c775cf0f (diff) | |
download | genenetwork2-e3ebbb26cd20aeb096d9b735dd160604894efbce.tar.gz |
The correct drop-down options should appear for the BXD-Harvested group under correlations now
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 4fe08b2b..48d0faf5 100644 --- a/wqflask/wqflask/show_trait/show_trait.py +++ b/wqflask/wqflask/show_trait/show_trait.py @@ -335,7 +335,7 @@ class ShowTrait(object): # We're checking a string here! assert isinstance(this_group, basestring), "We need a string type thing here" - if this_group[:3] == 'BXD': + if this_group[:3] == 'BXD' and this_group != "BXD-Harvested": this_group = 'BXD' if this_group: |