about summary refs log tree commit diff
path: root/wqflask/base/webqtlCaseData.py
diff options
context:
space:
mode:
authorZachary Sloan2012-09-28 15:37:14 -0500
committerZachary Sloan2012-09-28 15:37:14 -0500
commitc3d33485e92db007155983aa0018b65d4e7e6cc4 (patch)
treef5f062f5583b00b8a37822edc5269d2aca819e22 /wqflask/base/webqtlCaseData.py
parent45fb8b4961e1dc8251502f04cb94a4fcf1848f83 (diff)
downloadgenenetwork2-c3d33485e92db007155983aa0018b65d4e7e6cc4.tar.gz
Finished getting extra attributes to display correctly in the trait data table
Diffstat (limited to 'wqflask/base/webqtlCaseData.py')
-rwxr-xr-xwqflask/base/webqtlCaseData.py4
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"
-        
-        
+