Hi,
We have airway epithelial models using 6 donors, including 4 female (two older and two younger) and 2 younger males. We've infected primary human bronchial cultures with the FLU virus. The transcriptional responses of these cultures were sequenced through RNA-seq at time intervals 6, 24, and 48 hr over 4 batches. This setup included some overlapping donors, as well as both technical and biological replicates.
We employed EdgeR
, starting with filterbyexpr
and then proceeding to (cpm) with TMM normalization. Using the normalized values, we determined the Fold-Changes (FC) relative to the mock (control) for each donor. Owing to the limited number of donors and the inclusion of multiple batches, we opted for calculate FC values rather than statistical methods like glmQLFit or lmFit from limma, such as t-tests or ANOVA. This approach was also intended to mitigate to some extent potential batch and gender variations. We're considering whether this methodology for deriving FC values and coupled with Difference values [to regress out extreme or noisy genes] effectively indicates differential gene expression. Simultaneously, we are also exploring if maybe one could point out that we could have enough samples to run a longitudinal analysis? At the point we are just exploring and benchmarking the feasible methods. Perhaps, we might have more donors going forward but it will take sometime. Note: We implemented batch correction using the sva packages ComBat function after normalization.
Does edgeR
has a functionality or any case study to perform longitudinal analysis preferably with small number of subjects or donors? Other than these mentioned methods if you have any advise or suggestions that will be very helpful.
Thank you,
Sabiha
Thank you Gordon Smyth This is noted.
I usually export the log normalized values from
EdgeR
and load intolimma
package due to flexibility and perform below pair-wise comparison. Is there a way either inEdgeR
orlimma
where I could find genes both common and unique changes over the timepoints? Typically, I perform union and intersection of genes and useVenn Diagram
for representation for each comparison.