about summary refs log tree commit diff
path: root/gn3/api
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/api')
-rw-r--r--gn3/api/general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/api/general.py b/gn3/api/general.py
index 891f992..b984361 100644
--- a/gn3/api/general.py
+++ b/gn3/api/general.py
@@ -64,7 +64,7 @@ def run_r_qtl(geno_filestr, pheno_filestr):
     """Run r_qtl command using the written rqtl_wrapper program
 
     """
-    rqtl_wrapper = 'scripts/rqtl_wrapper.R'
+    rqtl_wrapper = 'scripts/rqtl_wrapper.R' # This is a stub
     cmd = (f"Rscript {rqtl_wrapper} "
            f"{geno_filestr} {pheno_filestr}")
     return jsonify(run_cmd(cmd)), 201