Hi, Iam a very new in RNA-Seq data analysis. How can I make the graph of distribution of fpkm value for genes in one sample.
Thanks in advance for your help
Hi, Iam a very new in RNA-Seq data analysis. How can I make the graph of distribution of fpkm value for genes in one sample.
Thanks in advance for your help
Gene expression levels (fpkm) can vary extremely. There will be many low expressed genes and a few very highly expressed genes. I would recommend log-scaling the X-axis in order to visualize this extreme range. Also good function in R, very similar to hist() is density().
Thank you for your reply, I want to make the density graph of distribution of fpkm value for genes from genes.fpkm_tracking
(cufflinks output) file for just one sample and then based on graph find the appropriate FPKM cutoff to identify the high express gens in my sample. I am not good in R, can you provide me the codes for this purpose
Thanks in advance
The R stats package is really good at this type of thing. hist()
might be a good place to start.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thanks for your reply
thank you for your help