Displaying 1 result from an estimated 1 matches for "annotation_stuff".
2008 Mar 08
1
Errors in in my code
...load annotationtool in R
annotation_HGU133Plus2 <- read.csv("c://affymetrix.csv", colClasses =
"character")
annotation_probesets <- scan('c://ttest.csv',skip=1,what='')
dataDirectory <- system.file("data", package = "annotationTools")
annotation_stuff <- read.csv(paste(dataDirectory,
annotation_HGU133Plus2, sep = "/"), colClasses = "character")
myPS <- c(annotation_probesets)
getGENESYMBOL(myPS, annotation_stuff)
getGENEONTOLOGY(myPS, annotation_HGU133Plus2)
###############error message########################
> an...