Fast sequence alignment using word-based heuristic search. Find similar sequences quickly with BLAST-like algorithm.
BLAST (Basic Local Alignment Search Tool) uses heuristic algorithms to find similar sequences quickly. Instead of comparing every position, it searches for short matching "words" (k-mers) and extends them, making it much faster than exhaustive alignment methods.
Quick guide to find similar sequences:
This tool is useful when you need to:
Query sequence:
ATCGATCGATCGTAGCDatabase: Multiple sequences in FASTA format
Alignment results with scores:
Hit 1: Score 85%
Query: ATCGATCG---TAGC
Match: |||||||| ||||
Subj: ATCGATCGAATAGCQ: How does word size affect results?
A: Smaller words find more distant matches but take longer. Larger words are faster but may miss divergent sequences.
Q: What's the difference from full alignment?
A: BLAST uses shortcuts to find likely matches quickly, while full alignment compares every position exhaustively.