diff options
author | zsloan | 2020-11-10 13:02:15 -0600 |
---|---|---|
committer | zsloan | 2020-11-10 13:02:15 -0600 |
commit | ddcd54b505384b3d8f70c82cc97b9781672c5fb6 (patch) | |
tree | 990dda4415871595960de25ad7c1b2c3bf9a38b8 /wqflask | |
parent | 9560e6337d00a82d8f36073b31215735eb9a8c01 (diff) | |
download | genenetwork2-ddcd54b505384b3d8f70c82cc97b9781672c5fb6.tar.gz |
Changed "BXD-Harvested" to "BXD-Longevity" since that group was renamed and using the wrong name was causing correlations to not work.
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 25ba1a1d..0c6ae198 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-Harvested": + if this_group[:3] == 'BXD' and this_group != "BXD-Longevity": this_group = 'BXD' if this_group: |