fetch_conversion_table {MSnID} | R Documentation |
A wrapper function over AnnotationHub that helps to convert from one protein identifiers to another.
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
conv_tbl <- fetch_conversion_table("Rattus norvegicus", "REFSEQ", "SYMBOL") head(conv_tbl) conv_tab <- fetch_conversion_table("Homo sapiens", "UNIPROT", "SYMBOL") head(conv_tbl)