about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Kabui2021-06-20 09:15:00 +0300
committerAlexander Kabui2021-06-20 09:15:00 +0300
commit10140ab707021dd2dffb1b439f52a62e3d59c29a (patch)
treee7e0634176d55afefa25467652b4f97601287837
parent123ad47af288d6b94f0354a0abd5bc669bc988d4 (diff)
downloadgenenetwork3-10140ab707021dd2dffb1b439f52a62e3d59c29a.tar.gz
minor fix docstring
-rw-r--r--gn3/computations/biweight.py2
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)