aboutsummaryrefslogtreecommitdiff
path: root/gn3/api/general.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/api/general.py')
-rw-r--r--gn3/api/general.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/gn3/api/general.py b/gn3/api/general.py
index f904ffe..69ec343 100644
--- a/gn3/api/general.py
+++ b/gn3/api/general.py
@@ -7,7 +7,7 @@ from flask import request
from gn3.fs_helpers import extract_uploaded_file
from gn3.commands import run_cmd
-from gn3.db import rdf
+
general = Blueprint("general", __name__)
@@ -68,5 +68,3 @@ def run_r_qtl(geno_filestr, pheno_filestr):
cmd = (f"Rscript {rqtl_wrapper} "
f"{geno_filestr} {pheno_filestr}")
return jsonify(run_cmd(cmd)), 201
-
-