diff options
author | zsloan | 2017-06-14 23:16:28 +0000 |
---|---|---|
committer | zsloan | 2017-06-14 23:16:28 +0000 |
commit | adbdd62dfe4817b9d4bb6021f73de694199810b7 (patch) | |
tree | 9be63abcbd04b8d4ad14cdb7edd6538b72251b2e | |
parent | 6a05c82c35fa44339c958f4f1857aaed97a0279b (diff) | |
download | genenetwork2-adbdd62dfe4817b9d4bb6021f73de694199810b7.tar.gz |
Changed color scale for heatmap to blue <-> white <-> red
Removed an extraneous character in the gsearch_pheno html
-rw-r--r-- | wqflask/wqflask/static/new/javascript/lodheatmap.js | 2 | ||||
-rw-r--r-- | wqflask/wqflask/templates/gsearch_pheno.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/wqflask/static/new/javascript/lodheatmap.js b/wqflask/wqflask/static/new/javascript/lodheatmap.js index 45feb75d..f604cd10 100644 --- a/wqflask/wqflask/static/new/javascript/lodheatmap.js +++ b/wqflask/wqflask/static/new/javascript/lodheatmap.js @@ -20,7 +20,7 @@ lodheatmap = function() { chrGap = 8; titlepos = 20; rectcolor = d3.rgb(230, 230, 230); - colors = ["slateblue", "black", "yellow"]; + colors = ["blue", "white", "crimson"]; title = ""; xlab = "Chromosome"; ylab = ""; diff --git a/wqflask/wqflask/templates/gsearch_pheno.html b/wqflask/wqflask/templates/gsearch_pheno.html index 1bb2120e..46a80a09 100644 --- a/wqflask/wqflask/templates/gsearch_pheno.html +++ b/wqflask/wqflask/templates/gsearch_pheno.html @@ -27,7 +27,7 @@ <button class="btn btn-default" id="export_traits">Download CSV</button> </form> <br /> - v<div> + <div> <table id="trait_table" class="table table-hover table-striped nowrap" style="float: left;"> <thead> <tr> |