I read this paper "voom: precision weights unlock linear model analysis tools for RNA-seq read counts", in the methods, the "Delta rule for log-cpm" section:
The RNA-seq data consist of a matrix of read counts $$r_{gi}$$, for RNA samples i=1 to n, and genes g=1 to G. Write $R_i$ for the total number of mapped reads for sample i: $$R_i=\sum_{g=1}^{G}r_{gi}$$ They define the log-counts per million (log-cpm) value for each count as: $$y_{gi}=\log_2\left(\frac{r_{gi}+0.5}{R_i+1}\times 10^6\right)$$
Write $\lambda=E(r)$ for the expected value of a read count given the experimental conditions, and suppose that: $$var(r)=\lambda+\phi\lambda^2$$ If $r$ is large, then the log-cpm value of the observation is: $$y\approx\log_2(r)-\log_2(R)+6\log_2(10)$$ where $R$ is the library size. The analysis is conditional on $R$, so $R$ is treated as a constant. It follows that $$var(y)\approx var(\log_2 r)$$. If λ also is large, then: $$(\log_2 r)(\ln 2)\approx \ln r \approx \ln\lambda+\frac{r-\lambda}{\lambda}$$ so $$var(y)(\ln 2)^2\approx\frac{var(r)}{\lambda^2}=\frac{1}{\lambda}+\phi$$ How should I deduce the last 2 equations?
I added limma and voom tags. The (senior) author of limma and voom (Gordon Smyth) is active here, probably you will get his response.
Thanks. Can you please let me know why some mathematic expressions can't be rendered correctly, e.g. $r_{gi}$?
I quick glance suggests that the engine here is rendering display objects, but not inline math.
Looks like you need to add an additional
$
before/after expressions to render?You will need to fix the math above. My apologies. In testing this I have messed your equation formatting.Edit: This is one case where it may be appropriate to post the content as images properly rendered outside biostars.
The double
$
will lead to it being rendered as mathJAX, but as a display object, rather than inline. You might need to decide if you'd rather not have it on a separate line, and have it not math.Or one could use the symbol keyboard (or copy paste from online pages) for simple things like λ, ≈ and use HTML for Ri (
R<sub>i</sub>
).