very naive clarification should it be tumor RPKM/2 - normal RPKM/2
or it should be tumor RPKM-normal RPKM = X/2
• 0 views
•
link
I have RNAseq data as RPKM values (tumor vs normal) since data is paired end how could I convert to FPKM values.
Thanks
In case of single end data, RPKM=FPKM (Reads per kilobase per million reads and Fragments per kilobase per million reads).
In case of paired end data, you have for every read-pair one fragment. Thus, divide the RPKM by two.
Log in to answer this question.
You
may/should not convert RPKM to FPKM. You need to recalculate FPKM from BAM file. As suggested below, if you just divide by 2, they wont be true FPKM values as you do not knowif there are any read-pairs with only one-end mapped.And if there are many read pairs like that your FPKM value might not be true.Thanks for the explanation