Nothing
#' Retrieve Pharmacogenomics data for a specified gene.
#'
#' This function queries the Open Targets GraphQL API to retrieve pharmacogenomics data
#' for a specified gene.
#'
#' @param ensgId Character: ENSEMBL ID of the target gene (e.g., ENSG00000141510).
#'
#' @return Returns a tibble containing pharmacogenomics data for the specified gene.
#' @examples
#' \dontrun{
#' result <- pharmacogenomicsGeneQuery(ensgId = "ENSG00000141510")
#' }
#' @importFrom magrittr %>%
#' @importFrom tibble as_tibble
#' @export
#'
pharmacogenomicsGeneQuery <- function(ensgId) {
if (missing(ensgId) || is.null(ensgId)) {
stop("Please provide a value for the 'ensgId' argument.")
}
# Set up to query Open Targets API
tryCatch({
cli::cli_progress_step("Connecting to the Open Targets GraphQL API...", spinner = TRUE)
con <- ghql::GraphqlClient$new("https://api.platform.opentargets.org/api/v4/graphql")
qry <- ghql::Query$new()
query <- "query PharmacogenomicsQuery($ensgId: String!) {
target(ensemblId: $ensgId) {
id
pharmacogenomics {
variantRsId
genotypeId
variantFunctionalConsequence {
id
label
}
haplotypeId
haplotypeFromSourceId
isDirectTarget
drugs {
drugId
drugFromSource
}
phenotypeFromSourceId
genotypeAnnotationText
phenotypeText
pgxCategory
evidenceLevel
studyId
literature
}
}
}"
variables <- list(
ensgId = ensgId
)
qry$query(name = "getPharmacogenomicsData", x = query)
cli::cli_progress_step(paste0("Downloading data for ENSEMBL ID: ", ensgId, " ..."), spinner = TRUE)
# Execute the query
output0 <- con$exec(qry$queries$getPharmacogenomicsData, variables)
output1 <- jsonlite::fromJSON(output0, flatten = TRUE)
if (length(output1$data$target$pharmacogenomics) != 0) {
final_output <- tibble::as_tibble(output1$data$target$pharmacogenomics)
return(final_output)
} else {
message("No data found for the given parameters.")
return(NULL)
}
}, error = function(e) {
# Handling connection timeout
if (grepl("Timeout was reached", e$message)) {
stop("Connection timeout reached while connecting to the Open Targets GraphQL API.")
} else {
stop(e) # Handle other types of errors
}
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.