View source: R/mapHumanOrthologs.R
mapHumanOrthologs | R Documentation |
Map input to human gene orthologs
mapHumanOrthologs(genes, organism = NULL, ensemblRelease = NULL)
genes |
|
organism |
|
ensemblRelease |
|
Genes with identifier versions (e.g. "ENSMUSG00000000001.5") are not currently supported.
DFrame
.
Data frame containing mapping columns:
geneId
geneName
humanGeneId
humanGeneName
Updated 2023-11-28.
biomaRt::listEnsemblArchives()
.
biomaRt::listMarts()
.
biomaRt::useMart()
.
## Expecting ENSMUSG00000000001, ENSMUSG00000000003 to not match here.
genes <- c(
"ENSMUSG00000000001", "ENSMUSG00000000003",
"ENSMUSG00000000028", "ENSMUSG00000000031",
"ENSMUSG00000000037", "ENSMUSG00000000049"
)
## Protect against Ensembl timeouts causing build checks to fail.
if (goalie::isAnExistingUrl("https://ensembl.org")) {
try({
x <- mapHumanOrthologs(genes = genes, ensemblRelease = 87L)
print(x)
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.