diff options
author | DannyArends | 2017-02-07 17:12:25 +0100 |
---|---|---|
committer | DannyArends | 2017-02-07 17:12:25 +0100 |
commit | 0fac25087a862c1b64505b247bf82c9cb48df5dc (patch) | |
tree | b61fccf32e18114c8b17bdc492eebcbbaa46bf66 | |
parent | 155b8d8f675d73bdd5b1850af8b67a8e57065fa2 (diff) | |
download | genenetwork2-0fac25087a862c1b64505b247bf82c9cb48df5dc.tar.gz |
Adding an initial new trait page for a tabbed pane holding PheWAS, ePheWAS and Mediation
-rw-r--r-- | wqflask/wqflask/templates/show_trait_PheWAS_tools.html | 92 |
1 files changed, 91 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/show_trait_PheWAS_tools.html b/wqflask/wqflask/templates/show_trait_PheWAS_tools.html index d3635e0d..06922f05 100644 --- a/wqflask/wqflask/templates/show_trait_PheWAS_tools.html +++ b/wqflask/wqflask/templates/show_trait_PheWAS_tools.html @@ -1,3 +1,93 @@ <div> -PheWAS !!!! + <div class="col-xs-4"> + <div class="tabbable"> <!-- Only required for left/right tabs --> + + <ul class="nav nav-pills"> + <li class="active"> + <a href="#PheWAS" data-toggle="tab">PheWAS</a> + </li> + <li> + <a href="#ePheWAS" data-toggle="tab">ePheWAS</a> + </li> + <li> + <a href="#mediation" data-toggle="tab">Mediation</a> + </li> + + <div class="tab-content"> + <div class="tab-pane active" id="PheWAS"> + <div style="margin-top: 25px" class="form-horizontal"> + <br>PheWAS options: + <div class="mapping_method_fields form-group"> + <label for="strain_limit" style="text-align:left;" class="col-xs-3 control-label">Strain limit</label> + <div style="margin-left: 20px;" class="col-xs-4 controls"> + <input name="num_strain_limit" value="15" type="text" class="form-control"> + </div> + </div> + <div class="mapping_method_fields form-group"> + <label for="strain_limit" style="text-align:left;" class="col-xs-3 control-label">Plot rotation</label> + <div style="margin-left: 20px;" class="col-xs-4 controls"> + <input name="num_rotation" value="30" type="text" class="form-control"> + </div> + </div> + <div class="mapping_method_fields form-group"> + <label for="mtadjust" style="text-align:left;" class="col-xs-3 control-label">P adjustment</label> + <div style="margin-left: 20px;width: 225px;" class="col-xs-4 controls"> + <select name="sel_mtadjust" class="form-control"> + <option value="qvalue">False Discovery Rate</option> + <option value="BH">Benjamini Hochberg</option> + </select> + </div> + </div> + <div class="form-group"> + <div style="padding-left:15px;" class="controls"> + <button id="phewas_compute" class="btn submit_special btn-primary" data-url="/phewas" title="Compute PheWAS"> + <i class="icon-ok-circle icon-white"></i> Compute + </button> + </div> + </div> + </div> + </div> <!-- end of the PheWAS tab --> + + <div class="tab-pane" id="ePheWAS"> + <div style="margin-top: 25px" class="form-horizontal"> + <br>ePheWAS options: + <div class="mapping_method_fields form-group"> + <label for="strain_limit" style="text-align:left;" class="col-xs-3 control-label">ePheWAS opt 1</label> + <div style="margin-left: 20px;" class="col-xs-4 controls"> + <input name="num_strain_limit" value="15" type="text" class="form-control"> + </div> + </div> + <div class="form-group"> + <div style="padding-left:15px;" class="controls"> + <button id="phewas_compute" class="btn submit_special btn-primary" data-url="/phewas" title="Compute PheWAS"> + <i class="icon-ok-circle icon-white"></i> Compute + </button> + </div> + </div> + </div> + </div> <!-- end of the ePheWAS tab --> + + <div class="tab-pane" id="mediation"> + <div style="margin-top: 25px" class="form-horizontal"> + <br>Mediation options: + <div class="mapping_method_fields form-group"> + <label for="strain_limit" style="text-align:left;" class="col-xs-3 control-label">Mediation opt 1</label> + <div style="margin-left: 20px;" class="col-xs-4 controls"> + <input name="num_strain_limit" value="15" type="text" class="form-control"> + </div> + </div> + <div class="form-group"> + <div style="padding-left:15px;" class="controls"> + <button id="phewas_compute" class="btn submit_special btn-primary" data-url="/phewas" title="Compute PheWAS"> + <i class="icon-ok-circle icon-white"></i> Compute + </button> + </div> + </div> + </div> + </div> <!-- end of the ePheWAS tab --> + + </div> + </ul> + </div> + </div> </div> |