aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/ctl.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-27 16:20:18 -0500
committerFrederick Muriuki Muriithi2024-09-27 16:21:21 -0500
commit6e86be5910d01b8d682e217c0e53e49cf709a237 (patch)
tree2c7cfcb6a3443223b148245a9696b5a1a34aa0e2 /gn3/computations/ctl.py
parente2883e55b47f062b2d3d6ae50d6fe533ba8d841d (diff)
downloadgenenetwork3-6e86be5910d01b8d682e217c0e53e49cf709a237.tar.gz
Bug: Use absolute paths in place of relative paths.
Similar issue to commit 11d543eeca08fe0df4bf2be7222234fadb516a51
Diffstat (limited to 'gn3/computations/ctl.py')
-rw-r--r--gn3/computations/ctl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/computations/ctl.py b/gn3/computations/ctl.py
index eb34656..f881410 100644
--- a/gn3/computations/ctl.py
+++ b/gn3/computations/ctl.py
@@ -13,7 +13,7 @@ def call_ctl_script(data):
"""function to call ctl script"""
data["imgDir"] = TMPDIR
temp_file_name = dump_wgcna_data(data)
- cmd = compose_wgcna_cmd("scripts/ctl_analysis.R", temp_file_name)
+ cmd = compose_wgcna_cmd("ctl_analysis.R", temp_file_name)
cmd_results = run_cmd(cmd)
with open(temp_file_name, "r", encoding="utf-8") as outputfile: