aboutsummaryrefslogtreecommitdiff
path: root/gn3/api/general.py
diff options
context:
space:
mode:
authorMunyoki Kilyungi2022-11-23 12:19:02 +0300
committerBonfaceKilz2022-11-23 12:47:39 +0300
commitd0d08d513e403f7836da450a1d05eaeb89a5ba30 (patch)
treec37e42a2c0b1893fd90eb0282257351beb680f2b /gn3/api/general.py
parenta93e8cc48815bd7e9b64c634ad808ddbfa85cd4b (diff)
downloadgenenetwork3-d0d08d513e403f7836da450a1d05eaeb89a5ba30.tar.gz
Create a new REST endpoint for fetching a phenotype's metadata
* gn3/api/general.py: (dataset_metadata) Delete. * gn3/api/metadata.py: Import Blueprint, jsonify, current_app, SPARQLWrapper and get_dataset_metadata. (metadata): New Blueprint (jsonify_dataset_metadata): New function/end-point. * gn3/app.py: Import metadata (create_app): Register metadata blueprint.
Diffstat (limited to 'gn3/api/general.py')
-rw-r--r--gn3/api/general.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/gn3/api/general.py b/gn3/api/general.py
index 68b128b..f904ffe 100644
--- a/gn3/api/general.py
+++ b/gn3/api/general.py
@@ -69,7 +69,4 @@ def run_r_qtl(geno_filestr, pheno_filestr):
f"{geno_filestr} {pheno_filestr}")
return jsonify(run_cmd(cmd)), 201
-@general.route("/dataset/<accession_id>")
-def dataset_metadata(accession_id):
- """Return info as JSON for dataset with ACCESSION_ID."""
- return jsonify(rdf.get_dataset_metadata(accession_id).data)
+