Hi,
I often read in articles that read count RNASeq expression matrices (rows=genes / columns=samples) have been fpkm-normalized, median-centered, log2 transformed.
In which order these steps are performed?
When you do median-centering, you substract from the expression value the median calculated per samples (column) or per gene (row)?
In order to avoid producing NaNs during the log2 transformation, at which step do we add +1 to the expression values (to get > 0 values)?
I see things this way:
Add +1 to all read counts
normalise read counts (into FPKM, TPM, whatever...)
substract the median of the sample (column) to each expression values
log transform.
Is it correct?
Thanks !
Usually the log 2 transformation and the RPKM calculation go in one go, see for example the
rpkm()
function inedgeR
.The next step is the median centering, but in my opinion for heatmaps it is more common to use z-scores.
Ok, I see. The median centering is done by columns (samples), right?
Well it depends on what you exactly mean by that. You should take per row the median over all samples, is that what you meant?