get_genes | R Documentation |
Retrieve genes matching gene identifiers
get_genes(
genes,
raw = getOption("gemma.raw", FALSE),
memoised = getOption("gemma.memoised", FALSE),
file = getOption("gemma.file", NA_character_),
overwrite = getOption("gemma.overwrite", FALSE)
)
genes |
A vector of NCBI IDs, Ensembl IDs or gene symbols. |
raw |
|
memoised |
Whether or not to save to cache for future calls with the
same inputs and use the result saved in cache if a result is already saved.
Doing |
file |
The name of a file to save the results to, or |
overwrite |
Whether or not to overwrite if a file exists at the specified filename. |
A data table with information about the querried gene(s)
A list if raw = TRUE
.
The fields of the output data.table are:
gene.symbol
: Symbol for the gene
gene.ensembl
: Ensembl ID for the gene
gene.NCBI
: NCBI id for the gene
gene.name
: Name of the gene
gene.aliases
: Gene aliases. Each row includes a vector
gene.MFX.rank
: Multifunctionality rank for the gene
taxon.name
: Name of the species
taxon.scientific
: Scientific name for the taxon
taxon.ID
: Internal identifier given to the species by Gemma
taxon.NCBI
: NCBI ID of the taxon
taxon.database.name
: Underlying database used in Gemma for the taxon
taxon.database.ID
: ID of the underlying database used in Gemma for the taxon
get_genes("DYRK1A")
get_genes(c("DYRK1A", "PTEN"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.