aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/rust_correlation.py
diff options
context:
space:
mode:
authorAlexander2022-05-28 17:52:46 +0300
committerBonfaceKilz2022-06-29 17:41:16 +0300
commit01f1af8f0c7149d8454b68d3cca25b9af50011da (patch)
tree27831d2af05901669c31c962439ee24891e92652 /gn3/computations/rust_correlation.py
parent195bf83a3165b7994e56f95ee3199a66dc086b78 (diff)
downloadgenenetwork3-01f1af8f0c7149d8454b68d3cca25b9af50011da.tar.gz
pep8 formatting
Diffstat (limited to 'gn3/computations/rust_correlation.py')
-rw-r--r--gn3/computations/rust_correlation.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gn3/computations/rust_correlation.py b/gn3/computations/rust_correlation.py
index 16af13e..a3802ae 100644
--- a/gn3/computations/rust_correlation.py
+++ b/gn3/computations/rust_correlation.py
@@ -3,11 +3,11 @@ import subprocess
from gn3.settings import CORRELATION_COMMAND
from gn3.settings import TMPDIR
-def run_correlation(file_name:&str,outputdir:str = TMPDIR):
+def run_correlation(file_name: & str, outputdir: str = TMPDIR):
- command_list = [CORRELATION_COMMAND, file_name,outputdir]
+ command_list = [CORRELATION_COMMAND, file_name, outputdir]
- results = subprocess.run(command_list, check=True)
+ results = subprocess.run(command_list, check=True)
- return results
+ return results