Clustering in R
I have a file from a microarray experiment. The data is normalised and we are looking to find out which genes are differentially expressed between the groups. We have two groups and the data is nearly normally distributed, so we have performed a t-test for each gene. The p-values are in the last column; they are not corrected for multiple testing.
V1 V2 V3 V4 V5 V6
1 Names GSM123264.cel GSM123265.cel GSM123266.cel GSM123267.cel GSM123268.cel
2 DDR1 9.9278082964302 10.2686357358346 9.75539843223479 10.4895541740877 10.1249575001857
3 RFC2 5.36386267697312 5.08142307160792 5.22893132183885 5.23837679546089 5.1280831260327
How can I calculate how many genes have an FDR <=0.05? Also, how can I cluster the data to see where the genes discriminate between the groups? Thank you!
• 420 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Table looks like expression values per CEL files only, no p-values. Check "affy" and "limma" packages in Bioconductor.
For clustering I would recommend "
cluster 3" and then "Java Tree View" which are very decent programs. If you would like to do it inR, you should exploreheatmap.2function.