Dear all,
I'm using edgeR and I need to have a final cpm matrix with annotated IDs. Is there a way to not loose the iD information after doing
y<-calcNormFactors(y) and logCPM<-cpm(y, log=TRUE, prior.count=2)?
I really need to cross information from logCPM with other data...
Thanks in advance,
Patrícia
Reply to posts with "add comment", not "add your answer", unless you're answering your own question.
You need to add the row names to the matrix (and thus the
DGEList
). Doing the following:... gives me
logCPM
with row and column names. So you must be doing something different.