Description Usage Arguments Value Author(s) Examples
View source: R/fetch_conversion_table.R
A wrapper function over AnnotationHub that helps to convert from one protein identifiers to another.
1 2 3 4 | fetch_conversion_table(organism_name,
from, to,
backend="AnnotationHub",
snapshot_date=NULL)
|
organism_name |
(string) official organism name. E.g. "Homo sapiens", "Mus musculus" or "Rattus norvegicus". |
from, to |
(string) identifier names. Recommended names are "SYMBOL", "UNIPROT", "REFSEQ" and "ENSEMBLPROT". Other identifiers are possible, but use them at your own risk. |
backend |
(string) currently only AnnotationHub |
snapshot_date |
(string) snapshot date for AnnotationHub.
Default is |
data.frame with first column name of from identifier, the second name of to identifier
Vladislav A Petyuk vladislav.petyuk@pnnl.gov
1 2 3 4 | conv_tbl <- fetch_conversion_table("Rattus norvegicus", "REFSEQ", "SYMBOL")
head(conv_tbl)
conv_tab <- fetch_conversion_table("Homo sapiens", "UNIPROT", "SYMBOL")
head(conv_tbl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.