YEASTALIAS {YEAST} | R Documentation |
A set of gene names may have been used to report yeast genes represented by ORF identifiers. One of these names is chosen to be the primary gene name, and the others are considered aliases. This R environment provides mappings between the primary name and aliases.
Each primary name maps to a vector of alias names. If there are no
aliases, the vector will contain NA
.
Annotation based on data provided by:
Yeast Genome: Not available
Package built: Fri Oct 20 16:37:02 2006
http://www.yeastgenome.org/DownloadContents.shtml
require("annotate") || stop("annotate unavailable") xx <- as.list(YEASTALIAS) if(length(xx) > 0){ # Get the value of the first key xx[[1]] # Get the values for a few keys if(length(xx) >= 3){ xx[1:3] } }