diff options
author | Zachary Sloan | 2012-09-28 15:37:14 -0500 |
---|---|---|
committer | Zachary Sloan | 2012-09-28 15:37:14 -0500 |
commit | c3d33485e92db007155983aa0018b65d4e7e6cc4 (patch) | |
tree | f5f062f5583b00b8a37822edc5269d2aca819e22 /wqflask/base/webqtlCaseData.py | |
parent | 45fb8b4961e1dc8251502f04cb94a4fcf1848f83 (diff) | |
download | genenetwork2-c3d33485e92db007155983aa0018b65d4e7e6cc4.tar.gz |
Finished getting extra attributes to display correctly in the trait data table
Diffstat (limited to 'wqflask/base/webqtlCaseData.py')
-rwxr-xr-x | wqflask/base/webqtlCaseData.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/base/webqtlCaseData.py b/wqflask/base/webqtlCaseData.py index c805a95c..6352a083 100755 --- a/wqflask/base/webqtlCaseData.py +++ b/wqflask/base/webqtlCaseData.py @@ -36,6 +36,7 @@ class webqtlCaseData(object): self.value = value # Trait Value self.variance = variance # Trait Variance self.num_cases = num_cases # Number of individuals/cases + self.extra_attributes = None self.this_id = None # Set a sane default (can't be just "id" cause that's a reserved word) self.outlier = None # Not set to True/False until later @@ -70,5 +71,4 @@ class webqtlCaseData(object): return "%2.3f" % self.variance else: return "x" - - + |