diff options
author | Frederick Muriuki Muriithi | 2022-05-31 14:45:14 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-05-31 14:45:14 +0300 |
commit | c9dc23a573b399b17eb508af6c85a153c1910de4 (patch) | |
tree | 21489934cb4a52ec902755de3a578e48c8d77a7b | |
parent | e41a079f162d19e8089f64308e5de9e810461b3e (diff) | |
download | genenetwork3-c9dc23a573b399b17eb508af6c85a153c1910de4.tar.gz |
Remove unnecessary statement
-rw-r--r-- | gn3/commands.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gn3/commands.py b/gn3/commands.py index b1b3fc7..41418b0 100644 --- a/gn3/commands.py +++ b/gn3/commands.py @@ -67,7 +67,6 @@ def compose_pcorrs_command( primary_trait: str, control_traits: Tuple[str, ...], method: str, **kwargs): """Compose the command to run partias correlations""" - print(f"KWARGS: {kwargs}") prefix_cmd = ( f"{sys.executable}", "-m", "scripts.partial_correlations", primary_trait, ",".join(control_traits), f'"{method}"') |