aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations/ctl.py
diff options
context:
space:
mode:
authorAlexander Kabui2022-01-30 15:40:09 +0300
committerBonfaceKilz2022-02-02 10:59:34 +0300
commit6cc18925338a5acac18d8a31d651d0cade15a015 (patch)
tree4978496879e7415bbd49de7b377143088863c39e /gn3/computations/ctl.py
parentd1ee344e43ae210ca2eb34999035e13786466ca1 (diff)
downloadgenenetwork3-6cc18925338a5acac18d8a31d651d0cade15a015.tar.gz
fix comprehension list
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 0dec3c4..d11b691 100644
--- a/gn3/computations/ctl.py
+++ b/gn3/computations/ctl.py
@@ -27,7 +27,7 @@ def call_ctl_script(data):
output_file_data["image_loc"]).decode("ascii")
output_file_data["ctl_plots"] = [process_image(ctl_plot).decode("ascii") for
- clt_plot in output_file_data["ctl_plots"]]
+ ctl_plot in output_file_data["ctl_plots"]]
return output_file_data