diff options
author | zsloan | 2015-08-14 22:19:43 +0000 |
---|---|---|
committer | zsloan | 2015-08-14 22:19:43 +0000 |
commit | f8d0103821cfcf59890551f9876d0eba959da80e (patch) | |
tree | 8572a9c46cbf3a2a5a54ebdcbdcef415e28fd146 /wqflask/other_config | |
parent | a2fa749bd0aa39e95d1cf2fde0f3aef11a561272 (diff) | |
download | genenetwork2-f8d0103821cfcf59890551f9876d0eba959da80e.tar.gz |
Added csv download button to search result table; still need to add to other
tables and later attach its functionality to the existing Download Table button
Fixed an issue where rows wouldn't uncheck with backspacing in Select Top text area;
the last commit just fixed the highlighting, not the checkboxes
Some changes in progress towards trying to fix the additive effect issue; the problem is
that the lod_chart.js code writes each chromosome as one d3 path, so I can't change the color
for individual segments within that path. I'll have to completely change the way
the path is drawn for the additive effect
Diffstat (limited to 'wqflask/other_config')
-rwxr-xr-x | wqflask/other_config/nginx_conf/gn2_zach.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wqflask/other_config/nginx_conf/gn2_zach.conf b/wqflask/other_config/nginx_conf/gn2_zach.conf index e7284e8c..23f3995f 100755 --- a/wqflask/other_config/nginx_conf/gn2_zach.conf +++ b/wqflask/other_config/nginx_conf/gn2_zach.conf @@ -28,6 +28,11 @@ server { # root /gene/wqflask/wqflask/static/; #} + location /plink_gemma/ { + root /home/zas1024/gene/wqflask/wqflask/; + autoindex on; + } + location / { proxy_pass http://127.0.0.1:5002/; proxy_redirect off; |