aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzsloan2020-09-23 14:29:36 -0500
committerzsloan2020-09-23 14:29:36 -0500
commit04a2cb3fd909598b4c51baa63229f8609aa90999 (patch)
tree32c347b1aa57bd3d582d1d792f497a91ff46851f
parentbb146e6d6d8fefa2f588bbaaede9867a4f132e4d (diff)
downloadgenenetwork2-04a2cb3fd909598b4c51baa63229f8609aa90999.tar.gz
Aligned relevant columns to right in mapping results table
* wqflask/wqflask/templates/mapping_results.html - aligned score, position, additive effect, and dominance column headers to the right
-rw-r--r--wqflask/wqflask/templates/mapping_results.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/wqflask/wqflask/templates/mapping_results.html b/wqflask/wqflask/templates/mapping_results.html
index 41d760c0..e68a792a 100644
--- a/wqflask/wqflask/templates/mapping_results.html
+++ b/wqflask/wqflask/templates/mapping_results.html
@@ -236,16 +236,16 @@
<th>Row</th>
<th>Marker</th>
{% if LRS_LOD == "-log(p)" %}
- <th>–log(p)</th>
+ <th><div style="text-align: right;">–log(p)</div></th>
{% else %}
- <th>{{ LRS_LOD }}</th>
+ <th><div style="text-align: right;">{{ LRS_LOD }}</div></th>
{% endif %}
- <th>Position ({% if plotScale == "physic" %}Mb{% else %}cM{% endif %})</th>
+ <th><div style="text-align: right;">Position ({% if plotScale == "physic" %}Mb{% else %}cM{% endif %})</div></th>
{% if 'additive' in trimmed_markers[0] %}
- <th>Add Eff</th>
+ <th><div style="text-align: right;">Add Eff</div></th>
{% endif %}
{% if 'dominance' in trimmed_markers[0] and dataset.group.genetic_type != "riset" %}
- <th>Dom Eff</th>
+ <th><div style="text-align: right;">Dom Eff</div></th>
{% endif %}
</tr>
</thead>