aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/correlations.py
diff options
context:
space:
mode:
authorzsloan2021-06-16 19:40:03 +0000
committerzsloan2021-06-16 19:40:03 +0000
commit1c32cb1df09475ef70dbe2d7310ba33026baea22 (patch)
treede5202dd02ee6ee98e0c003a3e9e7503a2162d95 /gn3/computations/correlations.py
parent3881b50e5394072b8d721b0f84b59bf5de23172d (diff)
downloadgenenetwork3-1c32cb1df09475ef70dbe2d7310ba33026baea22.tar.gz
Fixed spelling of coeffient to coefficient
Diffstat (limited to 'gn3/computations/correlations.py')
-rw-r--r--gn3/computations/correlations.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/gn3/computations/correlations.py b/gn3/computations/correlations.py
index f0ce502..0fe46ab 100644
--- a/gn3/computations/correlations.py
+++ b/gn3/computations/correlations.py
@@ -68,8 +68,8 @@ pearson,spearman and biweight mid correlation return value is rho and p_value
"spearman": scipy.stats.spearmanr
}
use_corr_method = corr_mapping.get(corr_method, "spearman")
- corr_coeffient, p_val = use_corr_method(primary_values, target_values)
- return (corr_coeffient, p_val)
+ corr_coefficient, p_val = use_corr_method(primary_values, target_values)
+ return (corr_coefficient, p_val)
def compute_sample_r_correlation(trait_name, corr_method, trait_vals,
@@ -84,13 +84,13 @@ def compute_sample_r_correlation(trait_name, corr_method, trait_vals,
if num_overlap > 5:
- (corr_coeffient, p_value) =\
+ (corr_coefficient, p_value) =\
compute_corr_coeff_p_value(primary_values=sanitized_traits_vals,
target_values=sanitized_target_vals,
corr_method=corr_method)
- if corr_coeffient is not None:
- return (trait_name, corr_coeffient, p_value, num_overlap)
+ if corr_coefficient is not None:
+ return (trait_name, corr_coefficient, p_value, num_overlap)
return None
@@ -140,10 +140,10 @@ def compute_all_sample_correlation(this_trait,
for sample_correlation in results:
if sample_correlation is not None:
- (trait_name, corr_coeffient, p_value,
+ (trait_name, corr_coefficient, p_value,
num_overlap) = sample_correlation
corr_result = {
- "corr_coeffient": corr_coeffient,
+ "corr_coefficient": corr_coefficient,
"p_value": p_value,
"num_overlap": num_overlap
}
@@ -151,7 +151,7 @@ def compute_all_sample_correlation(this_trait,
corr_results.append({trait_name: corr_result})
return sorted(
corr_results,
- key=lambda trait_name: -abs(list(trait_name.values())[0]["corr_coeffient"]))
+ key=lambda trait_name: -abs(list(trait_name.values())[0]["corr_coefficient"]))
def benchmark_compute_all_sample(this_trait,
@@ -174,12 +174,12 @@ def benchmark_compute_all_sample(this_trait,
trait_vals=this_vals,
target_samples_vals=target_vals)
if sample_correlation is not None:
- (trait_name, corr_coeffient,
+ (trait_name, corr_coefficient,
p_value, num_overlap) = sample_correlation
else:
continue
corr_result = {
- "corr_coeffient": corr_coeffient,
+ "corr_coefficient": corr_coefficient,
"p_value": p_value,
"num_overlap": num_overlap
}
@@ -195,20 +195,20 @@ def tissue_correlation_for_trait(
compute_corr_p_value: Callable = compute_corr_coeff_p_value) -> dict:
"""Given a primary tissue values for a trait and the target tissues values
compute the correlation_cooeff and p value the input required are arrays
- output -> List containing Dicts with corr_coefficient value,P_value and
+ output -> List containing Dicts with corr_coefficient value, P_value and
also the tissue numbers is len(primary) == len(target)
"""
# ax :todo assertion that length one one target tissue ==primary_tissue
- (tissue_corr_coeffient,
+ (tissue_corr_coefficient,
p_value) = compute_corr_p_value(primary_values=primary_tissue_vals,
target_values=target_tissues_values,
corr_method=corr_method)
tiss_corr_result = {trait_id: {
- "tissue_corr": tissue_corr_coeffient,
+ "tissue_corr": tissue_corr_coefficient,
"tissue_number": len(primary_tissue_vals),
"tissue_p_val": p_value}}