Is possible to recreate RNASeq count dataset from a dataset normalized with FPKM ?
Given a dataset of RNA-Seq expression values normalized with the FPKM method, Is it possible to restore the original count dataset or create a new dataset that behaves very similar to the original count matrix (i.e. we can use in Poisson distribution based models)?
• 1,556 views
•
link
1 answer
If you have the library sizes and effective transcript lengths, you can calculate the original counts. If you have the FPKMs alone, you can't. See the formula for FPKM (from What the FPKM? A review of RNA-Seq expression units):
• 0 views
•
link
Log in to answer this question.
Unfortunately, it is not possible to calculate raw counts from RPKM data. Best is to start with bam files, and use a program such as
featureCountsto generate raw counts.Agree on this, because after normalization who knows how the original values were modified.