diff options
author | Alexander Kabui | 2021-06-20 09:15:00 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-06-20 09:15:00 +0300 |
commit | 10140ab707021dd2dffb1b439f52a62e3d59c29a (patch) | |
tree | e7e0634176d55afefa25467652b4f97601287837 /gn3/computations | |
parent | 123ad47af288d6b94f0354a0abd5bc669bc988d4 (diff) | |
download | genenetwork3-10140ab707021dd2dffb1b439f52a62e3d59c29a.tar.gz |
minor fix docstring
Diffstat (limited to 'gn3/computations')
-rw-r--r-- | gn3/computations/biweight.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/computations/biweight.py b/gn3/computations/biweight.py index f5eecb2..6d031ad 100644 --- a/gn3/computations/biweight.py +++ b/gn3/computations/biweight.py @@ -12,7 +12,7 @@ def calculate_biweight_corr(trait_vals: List, path_to_script: str = BIWEIGHT_RSCRIPT, command: str = "Rscript" ) -> Tuple[float, float]: - '''biweight function''' + """biweight function""" args_1 = ' '.join(str(trait_val) for trait_val in trait_vals) args_2 = ' '.join(str(target_val) for target_val in target_vals) |