diff options
-rw-r--r-- | gn3/computations/biweight.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/computations/biweight.py b/gn3/computations/biweight.py index 0377bdf..7accd0c 100644 --- a/gn3/computations/biweight.py +++ b/gn3/computations/biweight.py @@ -23,5 +23,5 @@ def calculate_biweight_corr(trait_vals: List, (corr_coeff, p_val) = tuple( [float(y.strip()) for y in results.split()]) return (corr_coeff, p_val) - except Exception as e: - raise e + except Exception as error: + raise error |