diff options
author | Zachary Sloan | 2014-12-12 19:28:16 +0000 |
---|---|---|
committer | Zachary Sloan | 2014-12-12 19:28:16 +0000 |
commit | 8ff77c08efabc715dccf36028fd227c907b22f90 (patch) | |
tree | e1f8fa5d05b3aced688bc2beab9f7867fbfb79e7 /wqflask/base/data_set.py | |
parent | cf59eaf9fe5d9f515083b0ff4e927d704568c552 (diff) | |
download | genenetwork2-8ff77c08efabc715dccf36028fd227c907b22f90.tar.gz |
Added a additive effect column to search result and collection tables
Fixed the header so that it looks fine when resizing
Diffstat (limited to 'wqflask/base/data_set.py')
-rwxr-xr-x | wqflask/base/data_set.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py index 7e187802..15a8c7cc 100755 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -639,7 +639,8 @@ class PhenotypeDataSet(DataSet): 'Authors', 'Year', 'Max LRS', - 'Max LRS Location'] + 'Max LRS Location', + 'Add. Effect'] self.type = 'Publish' @@ -899,7 +900,8 @@ class MrnaAssayDataSet(DataSet): 'Location', 'Mean Expr', 'Max LRS', - 'Max LRS Location'] + 'Max LRS Location', + 'Add. Effect'] # Todo: Obsolete or rename this field self.type = 'ProbeSet' |