Hi everybody,
I'm trying to analyse affimetrix data with bioconductor. To this objective
I found a basic how to tutorial on internet.
<http://cri.uchicago.edu/wp-content/uploads/2012/05/Analysis-of-Microrrays-with-R-and-Bioconductor.pdf>
first think i would like to know it is possible to add a legend to histograms, i did it as:
mydata <- ReadAffy() hist(mydata) legend("topright", c("Fibro_DV_U133A_ov","Fibro_K_U133A_ov", "Fibro_LV1_U133A_ov", "Fibr_LV2_U133A"), col=c("red","blue","orange","green"))
but it do not worked. the following step i would like to do is to graph normalitzed histogram, but i do not find how to do it, is that possible?
More questions, At one point of this tutorial is explained how to import phenotipe data to R.
pData(mydata) <- read.table("phenod.txt", header=T, row.names=1, sep="\t")
later, this data will be used to different goals (pe Analysis of differential gene expression which is what I'm interested at). Unfortunately, the expression.txt file is not with the files that I have received. Is it possible to get this data in another way? Apart from Cel files I have Chp, Dat Exp and Rpt. How can I use them?
thanks