diff options
author | Alexander | 2022-05-28 17:52:46 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-06-29 17:41:16 +0300 |
commit | 01f1af8f0c7149d8454b68d3cca25b9af50011da (patch) | |
tree | 27831d2af05901669c31c962439ee24891e92652 | |
parent | 195bf83a3165b7994e56f95ee3199a66dc086b78 (diff) | |
download | genenetwork3-01f1af8f0c7149d8454b68d3cca25b9af50011da.tar.gz |
pep8 formatting
-rw-r--r-- | gn3/computations/rust_correlation.py | 8 |
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 |