diff options
author | Frederick Muriuki Muriithi | 2022-01-31 05:28:05 +0300 |
---|---|---|
committer | zsloan | 2022-02-07 22:57:50 -0600 |
commit | b5bf6432dbf3a75e2306c03aced4180b020304c9 (patch) | |
tree | a3c8ce0ffb62bef9e4d5ce88de9ff527c1e602cd /wqflask | |
parent | 6683c13d838de422e2bbc7693907085dee45827d (diff) | |
download | genenetwork2-b5bf6432dbf3a75e2306c03aced4180b020304c9.tar.gz |
Add 'api' to root of partial correlations URL
Add api to the root of the partial correlations URL, making it:
/api/correlations/partial
rather than:
/correlations/partial
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/partial_correlations_views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/partial_correlations_views.py b/wqflask/wqflask/partial_correlations_views.py index f3ec0f78..6bc5efee 100644 --- a/wqflask/wqflask/partial_correlations_views.py +++ b/wqflask/wqflask/partial_correlations_views.py @@ -263,4 +263,4 @@ def partial_correlations(): return render_template( "partial_correlations.html", **args_dict, target_dbs=target_dbs, - corr_results=corr_results, part_corr_url=f"{GN_SERVER_URL}correlation/partial") + corr_results=corr_results, part_corr_url=f"{GN_SERVER_URL}api/correlation/partial") |