Description Usage Arguments Examples
A function that creates an Annotation table for microorrays experiments. It must be associated with an existing Array annotation data (ie hgu133plus2.db) where annotations has been assembled using data from public repositories
this function annotates probeids by using AnnotationDbi package
1 2 3 4 5 6 7 | getAnnotationTable(IDS, AnnPkg, w.annot = c("ENTREZID", "SYMBOL", "GENENAME",
"OMIM", "CHRLOC", "PATH", "GO"), w.annot.unique = c("ENTREZID", "SYMBOL",
"OMIM", "CHRLOC"))
getAnnotationTable(IDS, AnnPkg, w.annot = c("ENTREZID", "SYMBOL", "GENENAME",
"OMIM", "CHRLOC", "PATH", "GO"), w.annot.unique = c("ENTREZID", "SYMBOL",
"OMIM", "CHRLOC"))
|
IDS |
identification for the probesets |
AnnPkg |
annotation package (e.g. hgu133plus2.db) |
IDS: |
type of methods. Options are Regression, Classification adn Dual use |
AnnPkg: |
named of the Array annotation data (ie, hgu133plus2.db) |
w.annot: |
name of the information to be included in the table |
w.annot.unique: |
which columns should be used to solved duplicated annotation; ie when a probe have two gene names. |
w.annot: |
which information should be annotated |
w.annot.unique: |
unique annotation to be done |
1 2 3 4 | library(hgu133plus2.db)
AnnPkg <- hgu133plus2.db
getAnnotationTable(IDS=featureNames(eset), AnnPkg, w.annot=c("ENTREZID","SYMBOL","GENENAME"),w.annot.unique=c("ENTREZID"))
getAnnotationTable<-function(IDS, hgu133plus2.db, w.annot=c("ENTREZID","SYMBOL","GENENAME","OMIM","CHRLOC","PATH","GO"),w.annot.unique=c("ENTREZID","SYMBOL","OMIM","CHRLOC"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.