diff options
author | Alexander Kabui | 2022-01-27 10:06:08 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-02-09 08:49:56 +0300 |
commit | 1b257e599bda536217c135f11427382c28ba8c38 (patch) | |
tree | 964787e4ce6687fb8e9e43669ca6fe90e444cfe6 | |
parent | 37627471b479a1b2522308aeb6a43aee1b3635fd (diff) | |
download | genenetwork2-1b257e599bda536217c135f11427382c28ba8c38.tar.gz |
add trait lists and links to ctl plot
-rw-r--r-- | wqflask/wqflask/templates/gn3_ctl_results.html | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/wqflask/wqflask/templates/gn3_ctl_results.html b/wqflask/wqflask/templates/gn3_ctl_results.html index 23913e7b..08944b0f 100644 --- a/wqflask/wqflask/templates/gn3_ctl_results.html +++ b/wqflask/wqflask/templates/gn3_ctl_results.html @@ -55,9 +55,44 @@ </div> - <div> - <h2 style="text-align:center;">Ctl line plot</h2> - <img style="width:1000px;height: 600px;" class="center-block" src="data:image/jpeg;base64,{{ image_data | safe }}"> + <div > + + <div style="text-align:center;"> + <h2 >Ctl line plot</h2> + <h4>Plot the CTL for genome-wide CTL on all traits (the output of CTLscan).</h4> + + </div> + + <div class="row"> + <div class="col-8"> + + + <img style="width:100%;height: 600px;" class="center-block" src="data:image/jpeg;base64,{{ image_data | safe }}"> + + + </div> + + + + <div class= "col-4"> + + <ol style="height: 100%;display:flex;flex-direction: column;align-items: center;justify-content: center;"> + + {% for trait in phenotypes %} + + + {% set trait_data = trait.split(':') %} + + + <li><a href="/show_trait?trait_id={{trait_data[0]}}&dataset={{trait_data[1]}}">{{trait_data[0]}}</a></li> + + + {% endfor %} + </ol> + </div> + + </div> + </div> <h2 style="text-align:center">Significant CTL </h2> <table id="significance" width="80vw"></table> |