I have RNA Seq DESeq normalized data.I want to convert it into RPKM.
kindly let me know what should I do?
Any R package etc.
Thank You.
I have RNA Seq DESeq normalized data.I want to convert it into RPKM.
kindly let me know what should I do?
Any R package etc.
Thank You.
Take the counts, divide them by the gene length in KB (you can probably download this, but if not just google for how to generate it from a GTF file) and then divide by the number of mapped reads in millions.
For what it's worth, edgeR provides an rpkm()
function, though once again you'll need to supply the gene lengths.
If you input DESeq normalized count, then it is not RPKM (Reads Per Kilobase of transcript per Million mapped reads) but something like "Reads Per Kilobase of transcript per Million mapped reads on exons". I'm not saying it is a bad metric, but don't call this RPKM to avoid confusion !
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Total gene read counts were normalized on library size using DESeq method (size factor)
This is my file that I am using Devon. This A.Thaliana data. So simply I divide each counts with transcript length in kb then it will be converted to RPKM?
Divide by a million too, that'll be the M part in RPKM.
Thank You Devon.
Thank You so much.
It helped me a lot