diff options
author | Zachary Sloan | 2013-04-02 19:36:30 +0000 |
---|---|---|
committer | Zachary Sloan | 2013-04-02 19:36:30 +0000 |
commit | 51e120ae25a7955a895d5e79d5ee459764a331ea (patch) | |
tree | b39708982caceac8db2a952a50bb66c7467ea3ed /wqflask/base/data_set.py | |
parent | f2af96043989bf36d2961496aaef61adbe3d9701 (diff) | |
download | genenetwork2-51e120ae25a7955a895d5e79d5ee459764a331ea.tar.gz |
pylmm code is running for human data (plink .bed genotype files)
Diffstat (limited to 'wqflask/base/data_set.py')
-rwxr-xr-x | wqflask/base/data_set.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py index 71efc9b2..17881e53 100755 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -323,6 +323,11 @@ class PhenotypeDataSet(DataSet): description = this_trait.pre_publication_description this_trait.description_display = description + try: + this_trait.description_display.decode('ascii') + except Exception: + this_trait.description_display = this_trait.description_display.decode('utf-8') + if not this_trait.year.isdigit(): this_trait.pubmed_text = "N/A" |