Before you start
- You have seen the RNA-seq pipeline end to end, for example in The RNA-seq Big Picture.
- Any term new? The Glossary has it.
Learning objectives
By the end of this lesson you will be able to: explain why biological replicates matter, recognize a batch effect and a confounded design, and describe how to plan an RNA-seq experiment so the analysis can actually work.
The analysis is only as good as the design
No statistical method can rescue a badly planned experiment. The most common reason an RNA-seq study fails is not the code, it is the design: too few replicates, or a batch effect tangled up with the thing you wanted to measure. The good news is that the rules are simple, and knowing them before you sequence anything is the highest-value half-hour in the whole pipeline.
1Replicates: why you need at least three
A biological replicate is a separate, independent sample (a different mouse, a different patient, a different culture). You need several because biology is variable: two untreated samples already differ a little, just by chance. Replicates measure that natural variation, and that is exactly what lets a tool like DESeq2 tell a real treatment effect apart from background noise.
Biological vs technicalThey are not the same
A biological replicate is a different individual or sample. A technical replicate is the same sample measured twice. Only biological replicates capture the variation that matters for differential expression. The common minimum is three biological replicates per group, and more is better.
2Batch effects and the confounding trap
A batch effect is a systematic difference between samples that comes from how they were handled, not the biology: samples prepared on different days, by different people, or sequenced on different lanes can differ in ways that look like real signal. The danger is confounding: if every treated sample was processed on Monday and every control on Tuesday, you can never tell whether a difference is the treatment or the day.
Two defenses: balance and randomize (put some treated and some control samples in every batch), and when a batch is unavoidable, record it and include it in the model, for example a DESeq2 design of ~ batch + condition so the analysis can subtract the batch and still test the condition.
3More replicates beat more depth
People often ask whether to sequence each sample more deeply or to add more samples. For differential expression the answer is usually clear: more biological replicates gives you more power to detect real changes than piling extra reads onto a handful of samples. A modest depth across more replicates wins.
A planning checklist
Before you sequence: at least 3 biological replicates per group; conditions spread across batches, not confounded with them; any unavoidable batch recorded so it can go in the model; and a clear control group. Get these right and the analysis you learned in the flagship lesson will simply work.