I have a micro array data set , and it is Affy, and i read it using the code bellow :
CuCelfiles<-list.celfiles(full.names=TRUE)
CuCelfiles
data<-read.celfiles(CuCelfiles, pkgname="pd.hugene.1.0.st.v1")
# The box plot dispaly unorganize name of cel file
boxplot(data)
CuNorm<-rma(CuCelfiles)
I would like change the name of cell fise instead of GSE12345 to H1 , i could not do that , i tried to write data to csv but it does not work ? Any help please
What have you tried?
By the way, the GSE file you mention, GSE12345, and the pkgname in your code, pd.hugene.1.0.st.v1, are both Affymetrix arrays, not agilent. But the GSE12345 study was done with the Affymetrix Human Genome U133 Plus 2.0 Array, not the hugene array.
@mastal511 , Yes sorry for confusion, it is Affy. I have tried write the data to a csv file write.csv(data,"data.csv"); in the csv file i could change the sample names, but it does not work ?