queryEnsembl {psichomics} | R Documentation |
Query the Ensembl REST API
queryEnsembl(path, query, grch37 = TRUE)
path |
Character: API path |
query |
Character: API query |
grch37 |
Boolean: query the Ensembl GRCh37 API? if |
Parsed response or NULL
if no response
path <- "overlap/region/human/7:140424943-140624564" query <- list(feature = "gene") psichomics:::queryEnsembl(path, query, grch37 = TRUE) path <- "lookup/symbol/human/BRCA2" query <- list(expand=1) psichomics:::queryEnsembl(path, query, grch37 = TRUE)