How I perform fpkm on a file containing the raw reads of two samples and each sample have three replicates? I want to do the analysis in R.
How I perform fpkm on a file containing the raw reads of two samples and each sample have three replicates? I want to do the analysis in R.
Try countToFPKM package. This package provides an easy to use function to convert the read count matrix into FPKM values normalised by library size and feature effective length. It also provides the user with a reliable function to generate FPKM heatmap plot of the highly variable features in RNA-Seq dataset.; following the equation:
.
The fpkm()
function requires three inputs to return FPKM as numeric matrix normalized by library size and feature length:
See the blog post "What the FPKM" by Harold Pimentel that also provides R code:
https://haroldpimentel.wordpress.com/2014/05/08/what-the-fpkm-a-review-rna-seq-expression-units/
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Could the countToFPKM package work for single end RNA seq data too? Thanks.