about summary refs log tree commit diff
path: root/gn3
diff options
context:
space:
mode:
authorBonfaceKilz2021-03-04 23:05:34 +0300
committerBonfaceKilz2021-03-08 21:09:58 +0300
commit4cf5c29a06001577054b3548a24d895cf1911e13 (patch)
tree3912c611a7799cce56a860ce900d5d412b22ebea /gn3
parent747c9f5cb96d24f5f498127ec6cc89aa28ad50db (diff)
downloadgenenetwork3-4cf5c29a06001577054b3548a24d895cf1911e13.tar.gz
Add new endpoint
"/gwa-compute/<k_filename>/loco/covariates/maf/<maf>/<token>"
Diffstat (limited to 'gn3')
-rw-r--r--gn3/api/gemma.py50
1 files changed, 50 insertions, 0 deletions
diff --git a/gn3/api/gemma.py b/gn3/api/gemma.py
index e5a38e4..a341f62 100644
--- a/gn3/api/gemma.py
+++ b/gn3/api/gemma.py
@@ -154,6 +154,8 @@ values.
         genofile, phenofile, snpsfile = [os.path.join(working_dir,
                                                       _dict.get(x))
                                          for x in ["geno", "pheno", "snps"]]
+        if not do_paths_exist([genofile, phenofile, snpsfile]):
+            raise FileNotFoundError
         gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile}
         _hash = get_hash_of_files([genofile, phenofile, snpsfile])
         k_output_filename = f"{_hash}-k-output.json"
@@ -309,3 +311,51 @@ def compute_gwa_with_loco_maf(k_filename, maf, token):
         return jsonify(status=128,
                        # use better message
                        message="Metadata file non-existent!")
+
+
+@gemma.route("/gwa-compute/<k_filename>/loco/covariates/maf/<maf>/<token>",
+             methods=["POST"])
+def compute_gwa_with_loco_covar(k_filename, maf, token):
+    """Compute GWA values. No Covariates provided. Only loco and maf vals given.
+
+    """
+    working_dir = os.path.join(current_app.config.get("TMPDIR"),
+                               token)
+    _dict = jsonfile_to_dict(os.path.join(working_dir,
+                                          "metadata.json"))
+    try:
+        genofile, phenofile, snpsfile, covarfile = [
+            os.path.join(working_dir,
+                         _dict.get(x))
+            for x in ["geno", "pheno", "snps", "covar"]]
+        if not do_paths_exist([genofile, phenofile, snpsfile, covarfile]):
+            raise FileNotFoundError
+        gemma_kwargs = {"g": genofile, "p": phenofile,
+                        "a": snpsfile, "c": covarfile,
+                        "lmm": _dict.get("lmm", 9),
+                        "maf": float(maf)}
+        _hash = get_hash_of_files([genofile, phenofile, snpsfile, covarfile])
+        _output_filename = f"{_hash}-gwa-output.json"
+        return jsonify(
+            unique_id=queue_cmd(
+                conn=redis.Redis(),
+                email=(request.get_json() or {}).get('email'),
+                job_queue=current_app.config.get("REDIS_JOB_QUEUE"),
+                cmd=compose_gemma_cmd(
+                    gemma_wrapper_cmd=current_app.config.get("GEMMA_"
+                                                             "WRAPPER_CMD"),
+                    gemma_wrapper_kwargs={
+                        "loco": ("--input "
+                                 f"{os.path.join(working_dir, k_filename)}")
+                    },
+                    gemma_kwargs=gemma_kwargs,
+                    gemma_args=["-gk", ">",
+                                (f"{current_app.config.get('TMPDIR')}/"
+                                 f"{token}/{_output_filename}")])),
+            status="queued",
+            output_file=_output_filename)
+    # pylint: disable=W0703
+    except Exception:
+        return jsonify(status=128,
+                       # use better message
+                       message="Metadata file non-existent!")