aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kabui2021-12-01 10:20:20 +0300
committerBonfaceKilz2021-12-10 09:58:29 +0300
commit7743715771b6149606504a011e6f0aeb93a94488 (patch)
treeda386b1530de0506f72962099be32a6a08997001
parent7b63fb20154801d658150fcb41262a7c9f108183 (diff)
downloadgenenetwork3-7743715771b6149606504a011e6f0aeb93a94488.tar.gz
format normalize function doc string
-rw-r--r--gn3/computations/correlations.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gn3/computations/correlations.py b/gn3/computations/correlations.py
index d95ecee..d38946e 100644
--- a/gn3/computations/correlations.py
+++ b/gn3/computations/correlations.py
@@ -40,9 +40,9 @@ def map_shared_keys_to_values(target_sample_keys: List,
def normalize_values(a_values: List, b_values: List):
"""
- input:nested two list of primary and target values *includes None vals
- output: yield two list of normalized values elimate if none
-
+ :param a_values: list of primary strain values
+ :param b_values: a list of target strain values
+ :return: yield 2 values if none of them is none
"""
for a_val, b_val in zip(a_values, b_values):