diff options
author | Lei Yan | 2013-12-18 20:55:30 +0000 |
---|---|---|
committer | Lei Yan | 2013-12-18 20:55:30 +0000 |
commit | 28cf2547218d57ba2cd7a9d484385a31bb44e1e8 (patch) | |
tree | bcb3ee633c74c80b561de6d95b9f253ca78ceb76 /wqflask/base/data_set.py | |
parent | e07da192b37ac6ff35e06c0be2884be44a9840f7 (diff) | |
parent | b73346af1c423103625545168271af7f1389623f (diff) | |
download | genenetwork2-28cf2547218d57ba2cd7a9d484385a31bb44e1e8.tar.gz |
Merge /home/zas1024/gene
Diffstat (limited to 'wqflask/base/data_set.py')
-rwxr-xr-x | wqflask/base/data_set.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/wqflask/base/data_set.py b/wqflask/base/data_set.py index cd8c1ac1..fbe78d5d 100755 --- a/wqflask/base/data_set.py +++ b/wqflask/base/data_set.py @@ -318,12 +318,17 @@ class DatasetGroup(object): #determine default genotype object if self.incparentsf1 and genotype_1.type != "intercross": - self.genotype = genotype_2 + #self.genotype = genotype_2 + genotype = genotype_2 else: self.incparentsf1 = 0 - self.genotype = genotype_1 + #self.genotype = genotype_1 + genotype = genotype_1 - self.samplelist = list(self.genotype.prgy) + #self.samplelist = list(self.genotype.prgy) + self.samplelist = list(genotype.prgy) + + return genotype #class DataSets(object): @@ -624,7 +629,7 @@ class PhenotypeDataSet(DataSet): description = this_trait.pre_publication_description - this_trait.description_display = description + this_trait.description_display = description.strip() if not this_trait.year.isdigit(): this_trait.pubmed_text = "N/A" @@ -1084,6 +1089,7 @@ class MrnaAssayDataSet(DataSet): Strain.Name """ % (escape(trait), escape(self.name)) results = g.db.execute(query).fetchall() + print("RETRIEVED RESULTS HERE:", results) return results |