diff options
author | zsloan | 2015-07-09 20:02:56 +0000 |
---|---|---|
committer | zsloan | 2015-07-09 20:02:56 +0000 |
commit | 6680ff9356e34a488c70a8cedc041dbf2ce7903f (patch) | |
tree | 30f6ed851ca6bb9ea98aceaa2043957e169ce7dd | |
parent | ce77f735b36c2909ac79c86b673f057eded23f1a (diff) | |
download | genenetwork2-6680ff9356e34a488c70a8cedc041dbf2ce7903f.tar.gz |
Added a temporary fix to prevent .geno requiring mapping methods from appearing for human groups
-rwxr-xr-x | wqflask/wqflask/templates/show_trait_mapping_tools.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/show_trait_mapping_tools.html b/wqflask/wqflask/templates/show_trait_mapping_tools.html index 547da0d0..6f69bcfa 100755 --- a/wqflask/wqflask/templates/show_trait_mapping_tools.html +++ b/wqflask/wqflask/templates/show_trait_mapping_tools.html @@ -1,10 +1,10 @@ <div> - {% if use_pylmm_rqtl or use_plink_gemma %} + {% if (use_pylmm_rqtl and dataset.group.species != "human") or use_plink_gemma %} <div class="col-xs-6"> <div class="tabbable"> <!-- Only required for left/right tabs --> <ul class="nav nav-pills"> - {% if use_pylmm_rqtl and not use_plink_gemma %} + {% if use_pylmm_rqtl and not use_plink_gemma and dataset.group.species != "human" %} <li class="active"> <a href="#pylmm" data-toggle="tab">pyLMM</a> </li> @@ -29,7 +29,7 @@ </ul> <div class="tab-content"> - {% if use_pylmm_rqtl %} + {% if use_pylmm_rqtl and not use_plink_gemma and dataset.group.species != "human" %} <div class="tab-pane active" id="pylmm"> <div style="padding: 20px" class="form-horizontal"> <div class="mapping_method_fields form-group"> |