From 7743715771b6149606504a011e6f0aeb93a94488 Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Wed, 1 Dec 2021 10:20:20 +0300 Subject: format normalize function doc string --- gn3/computations/correlations.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gn3') 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): -- cgit v1.2.3