diff options
author | Alexander Kabui | 2021-10-05 15:13:06 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-10-25 14:16:21 +0300 |
commit | 838276a6c4effc6985a888a32d148ef8942b526a (patch) | |
tree | a6c306a764d6d2f4dc3d190732dea6e86b400fb3 | |
parent | f73262a56745de17bdb582474e27726cb19bd95e (diff) | |
download | genenetwork3-838276a6c4effc6985a888a32d148ef8942b526a.tar.gz |
rename key to image_data
-rw-r--r-- | gn3/computations/wgcna.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/computations/wgcna.py b/gn3/computations/wgcna.py index 26040d3..421e09c 100644 --- a/gn3/computations/wgcna.py +++ b/gn3/computations/wgcna.py @@ -65,7 +65,7 @@ def call_wgcna_script(rscript_path: str, request_data: dict): with open(generated_file, "r") as outputfile: output_file_data = json.load(outputfile) - output_file_data["image_1"] = process_image( + output_file_data["image_data"] = process_image( output_file_data["output"]["imageLoc"]) if run_cmd_results["code"] != 0: |