Nothing
#' Get Genes
#'
#' @description This service returns information about reference genes. A genome
#' build and GENCODE version must be provided.
#'
#' - Genes are searchable by gene symbol, GENCODE ID and versioned GENCODE ID.
#' - Versioned GENCODE ID is recommended to ensure unique ID matching.
#' - By default, this service queries the genome build and GENCODE version used by the latest GTEx release.
#'
#' [GTEx API Portal
#' documentation](https://gtexportal.org/api/v2/redoc#tag/Reference-Genome-Endpoints/operation/get_genes_api_v2_reference_gene_get)
#'
#' @inheritParams gtexr_arguments
#'
#' @return A tibble
#' @export
#' @family Reference Genome Endpoints
#'
#' @examples
#' \dontrun{
#' get_genes(c("CRP", "IL6R"))
#' }
get_genes <- function(geneIds,
gencodeVersion = "v26",
genomeBuild = "GRCh38/hg38",
page = 0,
itemsPerPage = 250) {
gtex_query(endpoint = "reference/gene")
}
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.