diff options
author | zsloan | 2021-09-09 17:07:06 +0000 |
---|---|---|
committer | zsloan | 2021-09-09 17:07:06 +0000 |
commit | 1f2e32a91727abab77ecdf501fcc5040b17dfece (patch) | |
tree | 502b7e6795d577fc382f67d9229d9660fa00cd9b | |
parent | d243e3a69b26d60709fe10ab0b70a0e1d53ba50d (diff) | |
download | genenetwork2-1f2e32a91727abab77ecdf501fcc5040b17dfece.tar.gz |
Replaced trait name with trait display name in display_mapping_results so the group codes will be includes in phenotype IDs
-rw-r--r-- | wqflask/wqflask/marker_regression/display_mapping_results.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/wqflask/wqflask/marker_regression/display_mapping_results.py b/wqflask/wqflask/marker_regression/display_mapping_results.py index 5f5fe6a3..e9ba7dff 100644 --- a/wqflask/wqflask/marker_regression/display_mapping_results.py +++ b/wqflask/wqflask/marker_regression/display_mapping_results.py @@ -1249,18 +1249,18 @@ class DisplayMappingResults: if self.this_trait.symbol: identification += "Trait: %s - %s" % ( - self.this_trait.name, self.this_trait.symbol) + self.this_trait.display_name, self.this_trait.symbol) elif self.dataset.type == "Publish": if self.this_trait.post_publication_abbreviation: identification += "Trait: %s - %s" % ( - self.this_trait.name, self.this_trait.post_publication_abbreviation) + self.this_trait.display_name, self.this_trait.post_publication_abbreviation) elif self.this_trait.pre_publication_abbreviation: identification += "Trait: %s - %s" % ( - self.this_trait.name, self.this_trait.pre_publication_abbreviation) + self.this_trait.display_name, self.this_trait.pre_publication_abbreviation) else: - identification += "Trait: %s" % (self.this_trait.name) + identification += "Trait: %s" % (self.this_trait.display_name) else: - identification += "Trait: %s" % (self.this_trait.name) + identification += "Trait: %s" % (self.this_trait.display_name) identification += " with %s samples" % (self.n_samples) d = 4 + max( |