Entering edit mode
Michael
•
0
@michael-10785
Last seen 9.5 years ago
Hi,
I am trying to use TCGA level 3 microarray data to get DEGs. The files first columns are genes and second columns are "log2 lowess normalised". Can I use this to get DEGs? if yes, what package can use that normalised log2 lowess value for this task?
Thank you very much

Thank you very much. I am using microarray data of TCGA.
If I can ask one more question:
I used limma for .CEL but haven't used a matrix of log2 lowess normalised counts. Can you tell me what function does call for DEGs? will the following code be a good move?
> L_FIT <- lmFit(TheMatrix, design) > L_FIT2 <- contrasts.fit(fit, contrast.matrix) > L_FIT2 <- eBayes(L_FIT2)Then using "topTable()" to get the result ?
Thanks