Q.24 Which of the following is NOT used for generating an optimal alignment of two
nucleotide sequences?
(A) Gap penalties
(B) Match scores
(C) Mismatch scores
(D) Nucleotide composition
Which Factor Is NOT Used in Optimal Nucleotide Sequence Alignment?
Nucleotide sequence alignment optimizes matches between DNA or RNA sequences using scoring systems. The correct answer is (D) Nucleotide composition, as it describes base frequencies (A, T, C, G) rather than contributing to alignment scoring.
Alignment Basics
Algorithms like Needleman-Wunsch or Smith-Waterman generate optimal alignments by maximizing total scores from pairwise comparisons. These scores balance rewards for similarities against penalties for differences and gaps. Nucleotide composition influences sequence properties but plays no direct role in dynamic programming matrices for alignment optimization.
Option Breakdown
-
(A) Gap penalties: Penalize insertions/deletions (gaps) to model evolutionary indels; higher opening costs than extensions prevent excessive fragmentation.
-
(B) Match scores: Positive values (+1 typical) reward identical bases (A-A, T-T), driving alignment toward conserved regions.
-
(C) Mismatch scores: Negative values (-1 common) penalize non-identical bases, ensuring biologically realistic alignments.
-
(D) Nucleotide composition: Measures GC-content or base bias for analyses like motif finding; irrelevant to pairwise scoring in optimal alignment.
| Option | Role in Alignment | Typical Score | Example Use |
|---|---|---|---|
| Gap Penalties | Discourages gaps | -10 open, -1 extend | Indel modeling |
| Match Scores | Rewards identity | +1 | Identical bases |
| Mismatch Scores | Penalizes differences | -1 | Non-matching pairs |
| Nucleotide Composition | NOT used | N/A | GC bias analysis |
Why Composition Doesn’t Fit
Standard scoring matrices (unitary or substitution-based) rely solely on position-wise comparisons, excluding global sequence traits like composition. Tools like BLAST confirm alignments via these three factors alone.


