Sequence Alignment Calculators
0 calculators tagged with “Sequence Alignment”
All Calculators
No calculators found for this topic.
Global vs. Local Alignment
Global alignment (Needleman-Wunsch): Aligns the full length of both sequences; optimal for sequences of similar length and high overall similarity; penalizes end gaps. Best for comparing closely related homologs or variants of the same gene.
Local alignment (Smith-Waterman): Finds the best-matching local regions (substrings) between two sequences; tolerates different-length sequences; ignores dissimilar regions. Best for finding domains or motifs in distantly related sequences. BLAST uses a heuristic approximation of Smith-Waterman for rapid database searching.
Scoring Matrices
DNA: simple match/mismatch scores (match = +2; mismatch = −1) or complex matrices for specific applications. Protein: PAM (Point Accepted Mutation) and BLOSUM (BLOcks Substitution Matrix) matrices. BLOSUM62 (derived from sequence blocks with 62% identity) is the most widely used for general protein alignment. Gap penalties: open gap (−10 to −12) and extension (−0.5 to −2) per gap position.
Multiple Sequence Alignment
Programs: ClustalW/ClustalOmega, MUSCLE, MAFFT. Progressive alignment: first align most similar pairs, then add remaining sequences. Used for phylogenetic tree construction, identifying conserved residues, and designing degenerate PCR primers. Output: aligned sequences with dashes (−) inserted for gaps.
BLAST (Basic Local Alignment Search Tool)
Finds database sequences similar to a query: nucleotide (blastn, blastp, blastx, tblastx). Key output: percent identity, E-value, alignment length, gaps. E-value < 10⁻⁵ is significant.
Glossary
Frequently Asked Questions
Sequence alignment arranges two or more biological sequences (DNA, RNA, or protein) to reveal regions of similarity. Identical or similar positions are aligned in columns; gaps (−) represent insertions or deletions (indels). Alignment reveals: evolutionary relationships (homologous positions that have been conserved since divergence from a common ancestor); functional similarities (conserved residues critical for protein function); structural similarities (conserved secondary/tertiary structure); and potential gene/protein identity in novel sequences. It underlies BLAST searches, phylogenetic tree construction, primer design, and genome annotation.
Global alignment (Needleman-Wunsch algorithm): aligns two sequences from end to end, penalizing gaps throughout including termini. Best for sequences of similar length and high overall similarity (e.g., comparing the same gene between two closely related species). Local alignment (Smith-Waterman algorithm): finds the highest-scoring locally similar region between two sequences; allows dissimilar ends to be unaligned. Best for finding domains, conserved motifs, or orthologous regions within otherwise dissimilar sequences. BLAST uses a fast heuristic approximation of Smith-Waterman for database searching.
BLOSUM and PAM matrices specify the score for substituting one amino acid for another in protein alignments. PAM (Point Accepted Mutation) matrices are derived from closely related protein families and extrapolated to different evolutionary distances. BLOSUM (BLOcks Substitution Matrix) matrices are derived from conserved ungapped sequence blocks at specific identity thresholds. BLOSUM62 (from blocks ≥62% identical) is the most widely used — it gives positive scores for frequently observed conservative substitutions (e.g., Leu→Ile) and negative scores for rare substitutions. For distantly related proteins: BLOSUM45; for closely related: BLOSUM80.
BLAST works in steps: (1) Divide query into short 'words' (k-mers). (2) Find all database sequences containing these words (above threshold score). (3) Extend alignments in both directions from word hits. (4) Evaluate and score extended alignments. Output includes: percent identity; query coverage; E-value (expect value — expected number of matches this good by chance in a database of this size); bit score. E-value interpretation: E < 0.001 = almost certainly homologous; E < 10⁻⁵ = very significant; E > 0.1 = likely chance match. Lower E-value = stronger evidence of homology.