diff options
author | Zachary Sloan | 2014-08-12 21:24:24 +0000 |
---|---|---|
committer | Zachary Sloan | 2014-08-12 21:24:24 +0000 |
commit | 18e3a1da1a96e8585746e9e4e4c5f5874512d94e (patch) | |
tree | bb479e3ec921240c3d61f5221fc3b6be6913fb5f /wqflask/utility/helper_functions.py | |
parent | 7ae4ea4cfd2bc06e71a23cd92d725a6b8a40d06e (diff) | |
download | genenetwork2-18e3a1da1a96e8585746e9e4e4c5f5874512d94e.tar.gz |
Fixed the scrollable data tables for the show trait page
Added the option to display the rqtl results (and soon other mapping results)
as either a manhattan plot or "interval map" style curve chart
Removed a couple unnecessary javascript imports
Changed the function in helper_functions.py that creates the trait and dataset
objects, making it to where the trait object also gets qtl info
Fixed color by trait after it was broken by the "scatterplot matrix" function
Diffstat (limited to 'wqflask/utility/helper_functions.py')
-rwxr-xr-x | wqflask/utility/helper_functions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/utility/helper_functions.py b/wqflask/utility/helper_functions.py index ca3e2350..15f60765 100755 --- a/wqflask/utility/helper_functions.py +++ b/wqflask/utility/helper_functions.py @@ -13,7 +13,8 @@ def get_species_dataset_trait(self, start_vars): print("After creating species") self.this_trait = GeneralTrait(dataset=self.dataset, name=start_vars['trait_id'], - cellid=None) + cellid=None, + get_qtl_info=True) print("After creating trait") #if read_genotype: |