diff options
author | zsloan | 2022-03-25 20:57:32 +0000 |
---|---|---|
committer | zsloan | 2022-03-25 16:05:30 -0500 |
commit | 270aa749638ab917920a77ec9e8d41eb24c80e1a (patch) | |
tree | 3cd961fe28d096f0fa9f5c7a5b3d5bb5af715d46 /wqflask/base/trait.py | |
parent | 155c392984daaa1f43712063c097a1936cf7e4c4 (diff) | |
download | genenetwork2-270aa749638ab917920a77ec9e8d41eb24c80e1a.tar.gz |
Fix issues that prevented genotype traits from being added to collections
Some of this was caused by heatmaps supporting code; that code should probably pass the traits differently than the way it does in the "trait_info_str" function
Diffstat (limited to 'wqflask/base/trait.py')
-rw-r--r-- | wqflask/base/trait.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wqflask/base/trait.py b/wqflask/base/trait.py index f0749858..ee5dda38 100644 --- a/wqflask/base/trait.py +++ b/wqflask/base/trait.py @@ -94,6 +94,7 @@ class GeneralTrait: self.num_overlap = None self.strand_probe = None self.symbol = None + self.abbreviation = None self.display_name = self.name self.LRS_score_repr = "N/A" |