View source: R/mapGeneNamesToEnsembl.R
mapGeneNamesToEnsembl | R Documentation |
Map gene names to Ensembl
mapGeneNamesToEnsembl(genes, organism, genomeBuild = NULL, release = NULL)
genes |
Gene names (e.g. |
organism |
|
genomeBuild |
|
release |
|
Internally matches using mapGenesToNCBI
first, so we can support
gene synonym matching.
Updated 2023-04-14.
## Homo sapiens.
x <- mapGeneNamesToEnsembl(
genes = c("TUT4", "ZCCHC11", "TENT3A"),
organism = "Homo sapiens",
genomeBuild = "GRCh38",
release = 109L
)
print(x)
## Mus musculus
x <- mapGeneNamesToEnsembl(
genes = c("Nfe2l2", "Nrf2"),
organism = "Mus musculus",
genomeBuild = "GRCm39",
release = 109L
)
print(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.