diff options
author | Pjotr Prins | 2024-03-24 09:36:33 +0100 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-12 07:20:32 -0500 |
commit | 1c4286ec769bdea47c7950b905d78232366af1fe (patch) | |
tree | 79e4bf6a77cc77202eee662e573f7a477b02e904 /gn3/api | |
parent | 090e5e0c41db2068d7e55684e320b287adc34bab (diff) | |
download | genenetwork3-1c4286ec769bdea47c7950b905d78232366af1fe.tar.gz |
Change behavior of do_paths_exist to actually throw useful error
Diffstat (limited to 'gn3/api')
-rw-r--r-- | gn3/api/gemma.py | 26 | ||||
-rw-r--r-- | gn3/api/rqtl.py | 5 |
2 files changed, 11 insertions, 20 deletions
diff --git a/gn3/api/gemma.py b/gn3/api/gemma.py index 6b0b20e..c862d91 100644 --- a/gn3/api/gemma.py +++ b/gn3/api/gemma.py @@ -12,7 +12,7 @@ from gn3.commands import run_cmd from gn3.fs_helpers import cache_ipfs_file from gn3.fs_helpers import jsonfile_to_dict from gn3.computations.gemma import generate_gemma_cmd -from gn3.computations.gemma import do_paths_exist +from gn3.computations.gemma import assert_paths_exist gemma = Blueprint("gemma", __name__) @@ -55,8 +55,7 @@ traitfile, and snpsfile are extracted from a metadata.json file. genofile = cache_ipfs_file( ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR')) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile} results = generate_gemma_cmd( gemma_cmd=current_app.config.get("GEMMA_" @@ -97,8 +96,7 @@ values. ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile} results = generate_gemma_cmd( gemma_cmd=current_app.config.get("GEMMA_" @@ -235,8 +233,7 @@ def compute_gwa_with_loco_maf(k_filename, maf, token): ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = { "g": genofile, "p": phenofile, @@ -286,8 +283,7 @@ def compute_gwa_with_loco_covar(k_filename, maf, token): ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile, covarfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile, covarfile]) gemma_kwargs = { "g": genofile, "p": phenofile, @@ -340,8 +336,7 @@ covars; lmm defaults to 9! ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile} gemma_k_cmd = generate_gemma_cmd( gemma_cmd=current_app.config.get("GEMMA_" @@ -396,8 +391,7 @@ covars; lmm defaults to 9! ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile} gemma_k_cmd = generate_gemma_cmd( gemma_cmd=current_app.config.get("GEMMA_" @@ -451,8 +445,7 @@ def compute_k_gwa_with_loco_only(chromosomes, maf, token): ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile} gemma_k_cmd = generate_gemma_cmd( gemma_cmd=current_app.config.get("GEMMA_" @@ -509,8 +502,7 @@ def compute_k_gwa_with_loco_and_cavar(chromosomes, maf, token): ipfs_file=_dict.get("geno"), cache_dir=current_app.config.get('CACHEDIR') ) - if not do_paths_exist([genofile, phenofile, snpsfile]): - raise FileNotFoundError + assert_paths_exist([genofile, phenofile, snpsfile]) gemma_kwargs = {"g": genofile, "p": phenofile, "a": snpsfile} gemma_k_cmd = generate_gemma_cmd( gemma_cmd=current_app.config.get("GEMMA_" diff --git a/gn3/api/rqtl.py b/gn3/api/rqtl.py index ae0110d..bfb191e 100644 --- a/gn3/api/rqtl.py +++ b/gn3/api/rqtl.py @@ -8,7 +8,7 @@ from flask import request from gn3.computations.rqtl import generate_rqtl_cmd, process_rqtl_mapping, \ process_rqtl_pairscan, process_perm_output -from gn3.computations.gemma import do_paths_exist +from gn3.computations.gemma import assert_paths_exist rqtl = Blueprint("rqtl", __name__) @@ -21,8 +21,7 @@ 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 + assert_paths_exist([genofile, phenofile]) # Split kwargs by those with values and boolean ones that just convert to True/False kwargs = ["covarstruct", "model", "method", "nperm", "scale", "control"] |