get.bm {convertid} | R Documentation |
Make a Query to Biomart.
Description
get.bm()
is a user-friendly wrapper for getBM()
from the biomaRt package with default
settings for Human and Mouse.
It sets all needed variables and performs the query.
Usage
get.bm(
values,
biom.data.set = c("human", "mouse"),
biom.mart = c("ensembl", "mouse", "snp", "funcgen", "plants"),
host = "https://www.ensembl.org",
biom.filter = "ensembl_gene_id",
biom.attributes = c("ensembl_gene_id", "hgnc_symbol", "description"),
biom.cache = rappdirs::user_cache_dir("biomaRt"),
use.cache = TRUE,
verbose = FALSE
)
Arguments
values |
|
biom.data.set |
|
biom.mart |
|
host |
|
biom.filter |
|
biom.attributes |
|
biom.cache |
|
use.cache |
( |
verbose |
( |
Value
A data frame with the retrieved information.
Author(s)
Vidal Fey
See Also
Examples
## Not run:
val <- c("ENSG00000111199", "ENSG00000134121", "ENSG00000176102", "ENSG00000171611")
bm <- get.bm(val)
bm
## End(Not run)