diff options
author | Alexander Kabui | 2021-10-29 09:49:28 +0300 |
---|---|---|
committer | GitHub | 2021-10-29 09:49:28 +0300 |
commit | 8f036415975d6e224e5e94277997329c0f1fa159 (patch) | |
tree | abc1e4b8578fad0cc934b334edc5c573a4bd6d20 /gn3/computations/biweight.py | |
parent | 0cfff99e22155b6b15e23cbeff596f5f8f08709c (diff) | |
download | genenetwork3-8f036415975d6e224e5e94277997329c0f1fa159.tar.gz |
Feature/biweight reimplementation (#47)
* add biweight reimplementation with pingouin
* delete biweight scripts and tests
* add python-pingouin to guix file
* delete biweight paths
* mypy fix:pingouin mising imports
* pep8 formatting && pylint fixes
Diffstat (limited to 'gn3/computations/biweight.py')
-rw-r--r-- | gn3/computations/biweight.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gn3/computations/biweight.py b/gn3/computations/biweight.py deleted file mode 100644 index 7accd0c..0000000 --- a/gn3/computations/biweight.py +++ /dev/null @@ -1,27 +0,0 @@ -"""module contains script to call biweight midcorrelation in R""" -import subprocess - -from typing import List -from typing import Tuple - -from gn3.settings import BIWEIGHT_RSCRIPT - - -def calculate_biweight_corr(trait_vals: List, - target_vals: List, - path_to_script: str = BIWEIGHT_RSCRIPT, - command: str = "Rscript" - ) -> Tuple[float, float]: - """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) - cmd = [command, path_to_script] + [args_1] + [args_2] - - results = subprocess.check_output(cmd, universal_newlines=True) - try: - (corr_coeff, p_val) = tuple( - [float(y.strip()) for y in results.split()]) - return (corr_coeff, p_val) - except Exception as error: - raise error |