hsahomologyLL2HGID {hsahomology} | R Documentation |
R environments that provides mappings between public database identifiers and internal HomoloGeneIDs (HGID) used by NCBI to represent sequences for Homo sapiens. Public database identifiers include Entrez Gene identifiers (LL) and GenBank Accesion/RefSeq numbers (ACC).
Each R environment provides mapping between either HomoloGeneIds and database identifiers. or the converse. The mapping direction is indicated by the name of the environment. For instance, hsahomologyACC2HGID provides mappings between GenBank accession numbers and HomoloGeneIds.
For each environment, a given identifier will map to a named vector of identifiers. the names of which are the NCBI code for that organism.
Mappings contained were based on data provided by HomoloGene.
HomoloGene: ftp://ftp.ncbi.nih.gov/pub/HomoloGene/old/hmlg.ftp. Built: HomoloGene built date not available
Packagebuilt Wed Aug 29 13:36:25 2007
http://www.ncbi.nih.gov/entrez/query.fcgi?db=homologene
require("annotate") || stop("annotate unavailable") xx <- as.list(hsahomologyLL2HGID) if(length(xx) > 5){ # Get the value of the first key xx[2] # Get the value for a few keys if(length(xx) >= 3){ xx[2:4] } }