blob: 7756310640275e1adc7eecf45b54873801bf4383 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
"""Endpoints for running the rqtl cmd"""
from flask import Blueprint
from flask import current_app
from flask import jsonify
from flask import request
from gn3.computations.rqtl import generate_rqtl_cmd
from gn3.computations.gemma import do_paths_exist
rqtl = Blueprint("rqtl", __name__)
@rqtl.route("/compute", methods=["POST"])
def compute():
"""Given at least a geno_file and pheno_file, generate and
run the rqtl_wrapper script and return the results as JSON
"""
genofile = request.form['geno_file']
phenofile = request.form['pheno_file']
if not do_paths_exist([genofile, phenofile]):
raise FileNotFoundError
kwarg_list = ["addcovar", "model", "method", "interval", "nperm", "scale", "control_marker"]
rqtl_kwargs = {"geno": genofile, "pheno": phenofile}
for kwarg in kwarg_list:
if kwarg in request.form:
rqtl_kwargs[kwarg] = request.form[kwarg]
results = generate_rqtl_cmd(
rqtl_wrapper_cmd=current_app.config.get("RQTL_WRAPPER_CMD"),
rqtl_wrapper_kwargs=rqtl_kwargs
)
return jsonify(results)
|