Source code for tooluniverse.restful_tool
from .graphql_tool import GraphQLTool, remove_none_and_empty_values
import requests
import copy
from .tool_registry import register_tool
[docs]
def execute_RESTful_query(endpoint_url, variables=None):
response = requests.get(endpoint_url, params=variables)
try:
result = response.json()
if "error" in result:
print("Invalid Query: ", result["error"])
return False
return result
except requests.exceptions.JSONDecodeError:
print("JSONDecodeError: Could not decode the response as JSON")
return False
except requests.exceptions.HTTPError as e:
print(f"HTTP error occurred: {e}")
return False
except Exception as e:
print(f"An error occurred: {e}")
return False
[docs]
@register_tool("Monarch")
class MonarchTool(RESTfulTool):
[docs]
def __init__(self, tool_config):
endpoint_url = (
"https://api.monarchinitiative.org/v3/api" + tool_config["tool_url"]
)
super().__init__(tool_config, endpoint_url)
[docs]
def run(self, arguments):
arguments = copy.deepcopy(arguments)
query_schema_runtime = copy.deepcopy(self.query_schema)
for key in query_schema_runtime:
if key in arguments:
query_schema_runtime[key] = arguments[key]
if "url_key" in query_schema_runtime:
url_key_name = query_schema_runtime["url_key"]
formatted_endpoint_url = self.endpoint_url.format(
url_key=query_schema_runtime[url_key_name]
)
del query_schema_runtime["url_key"]
else:
formatted_endpoint_url = self.endpoint_url
if isinstance(query_schema_runtime, dict):
if "query" in query_schema_runtime:
query_schema_runtime["q"] = query_schema_runtime[
"query"
] # match with the api
result_id_prefix = self.tool_config.get("result_id_prefix")
requested_limit = query_schema_runtime.get("limit")
if result_id_prefix and isinstance(requested_limit, int):
# Over-fetch since client-side filtering below removes
# cross-ontology matches; still truncated back to
# requested_limit after filtering so the returned count
# matches what the caller asked for.
query_schema_runtime["limit"] = requested_limit * 3
response = execute_RESTful_query(
endpoint_url=formatted_endpoint_url, variables=query_schema_runtime
)
if "facet_fields" in response:
del response["facet_fields"]
response = remove_none_and_empty_values(response)
# Fix-R16A-2: Monarch's search endpoint has no server-side namespace
# filter (confirmed live: a "prefix" query param is silently
# ignored) and its "category" filter (e.g. biolink:PhenotypicFeature)
# matches equivalent terms across multiple ontologies (HP, MP,
# UPHENO, ...) -- so a tool promising a specific ontology's IDs (like
# get_HPO_ID_by_phenotype) could return a non-HPO term as its
# top-ranked hit. Opt-in, config-driven client-side filter: a tool
# config may declare `result_id_prefix` to restrict returned items
# to IDs starting with that prefix, without hardcoding any ontology
# into this shared class used by other Monarch tools. Combined with
# the over-fetch above, the returned count still matches what the
# caller asked for.
if (
result_id_prefix
and isinstance(response, dict)
and isinstance(response.get("items"), list)
):
filtered = [
item
for item in response["items"]
if isinstance(item, dict)
and str(item.get("id", "")).startswith(result_id_prefix)
]
if isinstance(requested_limit, int):
filtered = filtered[:requested_limit]
response["items"] = filtered
if isinstance(response, dict) and "status" not in response:
return {"status": "success", "data": response}
return response
[docs]
@register_tool("MonarchDiseasesForMultiplePheno")
class MonarchDiseasesForMultiplePhenoTool(MonarchTool):
[docs]
def run(self, arguments):
arguments = copy.deepcopy(arguments)
query_schema_runtime = copy.deepcopy(self.query_schema)
for key in query_schema_runtime:
if (key != "HPO_ID_list") and (key in arguments):
query_schema_runtime[key] = arguments[key]
all_diseases = []
for HPOID in arguments["HPO_ID_list"]:
each_query_schema_runtime = copy.deepcopy(query_schema_runtime)
each_query_schema_runtime["object"] = HPOID
each_query_schema_runtime["limit"] = 500
each_output = execute_RESTful_query(
endpoint_url=self.endpoint_url, variables=each_query_schema_runtime
)
each_output = each_output["items"]
each_output_names = [disease["subject_label"] for disease in each_output]
all_diseases.append(each_output_names)
intersection = set(all_diseases[0])
for element in all_diseases[1:]:
intersection &= set(element)
intersection = list(intersection)
if query_schema_runtime["limit"] < len(intersection):
intersection = intersection[: query_schema_runtime["limit"]]
return intersection