View source: R/biomart_utils.R
ensembl_id_2_gene_name | R Documentation |
Convenient converter from ensembl ID to gene name
ensembl_id_2_gene_name(
ensembl_gene_id,
only_gene_name = TRUE,
verbose = FALSE,
mRt_objct = ensembl
)
ensembl_gene_id |
A character specifying the ENSEMBL gene ID |
only_gene_name |
Logical, whether to return only the gene name or a |
verbose |
Logical. Do you want me to be chatty? |
mRt_objct |
A |
A character corresponding to an ensembl gene name or a data.frame
.
ensembl <- gimme_mart()
ensembl_id_2_gene_name("ENSG00000000003")
"TSPAN6"
# Example with mouse ensembl
ensembl <- gimme_mart(species = "mmusculus", latest = T, use_mirror = F,
out_dir = F, verbose = T)
ensembl_id_2_gene_name("ENSMUSG00000067377", only_gene_name = F)
ensembl_gene_id external_gene_name chromosome_name start_position gene_biotype
1 ENSMUSG00000067377 Tspan6 X 132791817 protein_coding
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.