Question:

Which of the following scores are not considered while calculating the SP scores?

Show Hint

Remember that in Sum-of-Pairs (SP) scoring:
- Alignment column positions where both sequences contain a gap character (\(-\)) are given a score of 0 (ignored).
- This prevents penalizing a gap that was already introduced earlier in the ancestral lineage.
  • Number of gap penalties
  • All possible pairwise matches
  • All possible mismatches
  • All possible gap costs
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Step 1: Understanding the Concept:
In bioinformatics, the Sum-of-Pairs (SP) score is the standard mathematical function used to evaluate the quality of a Multiple Sequence Alignment (MSA).
The SP score is calculated by summing the alignment scores of all possible projected pairwise combinations of sequences within the alignment.

Step 3: Detailed Explanation:

Let us analyze the mathematical components of the Sum-of-Pairs scoring system:
For an alignment containing \(k\) sequences, there are \(k(k-1)/2\) unique sequence pairs.
The SP score is calculated by evaluating each column of the MSA across all possible pairs:
\[ \text{SP Score} = \sum_{1 \le i < j \le k} \text{Score}(S_i, S_j) \] For each pair of residues in a column, the pairwise score contributes:
- Pairwise Matches (B): Scoring positive values for identical residues based on a substitution matrix (such as BLOSUM62).
- Mismatches (C): Scoring negative values (penalties) for non-identical residues.
- Gap Costs (D): Penalties applied for aligning a residue in one sequence with a gap character (\(-\)) in another.
- Number of gap penalties (A): While the actual gap costs (determined by gap opening and extension penalties) are included in the pairwise scores, the simple *total count or number* of gap penalties as an independent integer is not considered in the SP score calculation.
The scoring system evaluates the specific position and length of each gap for each pair, rather than counting the total number of penalties.
Therefore, the number of gap penalties is not considered.

Step 4: Final Answer:

The score component not considered in calculating SP scores is the Number of gap penalties, matching Option (A).
Was this answer helpful?
0
0