Hi all
I did normalization process through RMA in R for my datasets with Affymetrix platform (HGU133plus2). But my problem is i am getting duplicate gene symbols with different expression values. What step can i do to get unique gene symbols. Please help me out.
Thanks for the response. But i am not able to run this particular package findLargest. Could you suggest me any more options to do it.
I recommeded a function called
findLargest
, which you can find in the genefilter package.Thank you Sir for your response. I did try. I can run findLargest in genefilter package. One more doubt, suppose my datasets consists of more than 50000 genes. What maximum rnorm do i need to give?
stats <- rnorm(50000).
You are taking the example too literally. That's a fake example that is used simply to show how the function works, and isn't intended to be how you use it in the real world. Instead, look at the Arguments section of the help:
The testStat argument isn't a randomly generated set of numbers - it is a set of statistics that you generated when testing for differences between your groups, and the
findLargest
function finds the largest of these statistics, for each Entrez Gene ID.Thank you for your valuable suggestion. I got it :-)