This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Replace XLOC id with gene symbol in FPKMmatrix function

I am using FPKM matrix function in cummeRbund as follows

gene.matrix<-fpkmMatrix(genes(cuff))

However, I am interested in plotting Ensembl ids or Gene symbols instead of XLOC ids. Is there a way to edit fpkm matrix function in order to use gene_short_name instead of gene_id?

Thanks

rna-seq r

1 answer

Found one way.

gene.matrix<-fpkmMatrix(genes(cuff), fullnames=TRUE)

Log in to answer this question.