aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorzsloan2021-12-23 19:00:00 +0000
committerzsloan2021-12-23 13:04:38 -0600
commit64f421a2522ad4fbb295b2f962957ac0c8973e22 (patch)
treea477113e654549492ce4ca0e718692a63c967416 /wqflask
parent8892fd1826925a5d85ae8a966bb484365282d992 (diff)
downloadgenenetwork2-64f421a2522ad4fbb295b2f962957ac0c8973e22.tar.gz
If phenotype metadata is cached, authenticate for those traits (otherwise authentication happens in create_trait at line 105)
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/correlation/show_corr_results.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/wqflask/wqflask/correlation/show_corr_results.py b/wqflask/wqflask/correlation/show_corr_results.py
index 4d2ac9ff..1c391386 100644
--- a/wqflask/wqflask/correlation/show_corr_results.py
+++ b/wqflask/wqflask/correlation/show_corr_results.py
@@ -29,6 +29,7 @@ from base.webqtlConfig import TMPDIR
from wqflask.correlation.pre_computes import fetch_all_cached_metadata
from wqflask.correlation.pre_computes import cache_new_traits_metadata
+from utility.authentication_tools import check_resource_availability
from utility import hmac
@@ -106,6 +107,12 @@ def correlation_json_for_table(correlation_data, this_trait, this_dataset, targe
get_qtl_info=True)
target_trait = jsonable(target_trait_ob, target_dataset_ob)
new_traits_metadata[trait_name] = target_trait
+ else:
+ if target_dataset['type'] == "Publish":
+ permissions = check_resource_availability(target_dataset_ob, trait_name)
+ if permissions['metadata'] == "no-access":
+ continue
+
if target_trait['view'] == False:
continue
results_dict = {}