Genome alignment
Best when you need splice junctions, coverage QC, or novel feature discovery.
RNA-seq is not just about finding a list of significant genes. The quality of the biological design, the consistency of the library preparation, and the clarity of the model formula usually matter more than the choice of one aligner or one plotting style.
Best when you need splice junctions, coverage QC, or novel feature discovery.
Fast when a good transcriptome exists and you mainly want abundance for DE.
For teaching or small genomes when a 30 GB STAR index is not available.
Salmon writes transcript-level estimates. For gene-level DE with DESeq2 or edgeR you still need a gene mapping step such as tximport. Do not feed TPM into those count models.
salmon index -t transcripts.fa -i tx_index
salmon quant -i tx_index -l A \
-1 trimmed_R1.fastq.gz -2 trimmed_R2.fastq.gz \
-p 8 -o sample_salmon
Click a stage to see the main question it answers and the most common way learners get misled.
Before thinking about software, define your comparison: treatment vs control, paired vs unpaired, donor effects, time points, and replicates. A weak design cannot be repaired statistically afterward.
Gene-level counts are commonly used for DE, while transcript-level abundance can be useful for isoform questions. Choose a summary that matches the question, not just the easiest tool.
Different libraries have different depths and composition. Normalization tries to make expression more comparable without erasing true biology.
If samples cluster by run date or operator rather than condition, the model and interpretation must account for that. Ignoring batch effects can create elegant but false results.
A volcano plot is only an overview. The real work is understanding whether the changing genes fit the biology, known pathways, cell composition shifts, or technical confounding.
The y-axis here is −log10(FDR), not raw p. Genes with large effect size and strong adjusted support appear in the upper corners; biology still decides which of them matter.
A small marker set can be visualized quickly, but this is a communication aid, not a substitute for proper modeling.
The safest RNA-seq projects show samples separating primarily by biology, not by library date or lane.
MA plots help you see whether expression changes are balanced, intensity-dependent, or dominated by low-count noise.
Every sample should have condition labels, batch information, and any paired/blocked structure clearly recorded.
Outlier samples with bad QC can dominate DE results if left in without explanation.
Significant genes should be checked for annotation quality, known pathways, and plausibility within the experiment.