diff options
| author | Alexander_Kabui | 2025-01-09 11:52:43 +0300 |
|---|---|---|
| committer | Alexander_Kabui | 2025-01-09 11:52:43 +0300 |
| commit | 7be70a40f885f23bec6a83b5c8abb17c5dd6e650 (patch) | |
| tree | c56ebc818a91768da00fbe0cc7cd20e313011a85 | |
| parent | 22c6290db6bcdd93edc9b4fd40ac204d88afcc7a (diff) | |
| download | genenetwork3-7be70a40f885f23bec6a83b5c8abb17c5dd6e650.tar.gz | |
Minor fix.
| -rw-r--r-- | gn3/api/rqtl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/api/rqtl.py b/gn3/api/rqtl.py index 7b29cef..e9ea1b9 100644 --- a/gn3/api/rqtl.py +++ b/gn3/api/rqtl.py @@ -23,7 +23,7 @@ rqtl = Blueprint("rqtl", __name__) @rqtl.route("/compute", methods=["POST"]) @enable_streaming -def compute(stream_ouput_file): +def compute(stream_output_file): """Given at least a geno_file and pheno_file, generate and run the rqtl_wrapper script and return the results as JSON @@ -72,7 +72,7 @@ def compute(stream_ouput_file): ) ): pass - run_process(rqtl_cmd.get("rqtl_cmd").split(), stream_ouput_file, run_id) + run_process(rqtl_cmd.get("rqtl_cmd").split(), stream_output_file, run_id) if "pairscan" in rqtl_bool_kwargs: rqtl_output["results"] = process_rqtl_pairscan( |
