BLAST

BLAST

Infobox Software
name=BLAST
developer=Myers, E., Altschul S.F., Gish W., Miller E.W., Lipman D.J., NCBI
latest release version=2.2.18
operating_system=UNIX, Linux, Mac, MS-Windows
genre=Bioinformatics tool
license=Public Domain
website= [ftp://ftp.ncbi.nlm.nih.gov/blast/ ftp://ftp.ncbi.nlm.nih.gov/blast/]
In bioinformatics, Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences. A "BLAST search" enables a researcher to compare a query sequence with a library or database of sequences, and identify library sequences that resemble the query sequence above a certain threshold. For example, following the discovery of a previously unknown gene in the mouse, a scientist will typically perform a BLAST search of the human genome to see if humans carry a similar gene; BLAST will identify sequences in the human genome that resemble the mouse gene based on similarity of sequence. The BLAST program was designed by Eugene Myers, Stephen Altschul, Warren Gish, David J. Lipman and Webb Miller at the NIH and was published in J. Mol. Biol. in 1990.

Background

BLAST is one of the most widely used bioinformatics programs [Casey, RM (2005). " [http://www.b-eye-network.com/view/1730 BLAST Sequences Aid in Genomics and Proteomics] ". "Business Intelligence Network".] , because it addresses a fundamental problem and the algorithm emphasizes speed over sensitivity. This emphasis on speed is vital to making the algorithm practical on the huge genome databases currently available, although subsequent algorithms can be even faster.

Before fast algorithms such as BLAST and FASTA were developed, doing database searches for the protein or nucleic sequences was very time consuming by using a full alignment program like dynamic programming. BLAST is about 50 times faster than the dynamic programming; however, it cannot guarantee the optimal alignments of the query and database sequences as in the dynamic programming, but just work to find the related sequences in a database search. BLAST is more time efficient than FASTA by searching only for the more significant patterns in the sequences, but with comparative sensitivity. This could be further realized by knowing the algorithm of BLAST introduced below.

Examples of other questions that researchers use BLAST to answer are:
* Which bacterial species have a protein that is related in lineage to a certain protein with known amino-acid sequence?
* Where does a certain sequence of DNA originate?
* What other genes encode proteins that exhibit structures or motifs such as ones that have just been determined?BLAST is also often used as part of other algorithms that require approximate sequence matching.

The BLAST algorithm and the computer program that implements it were developed by Stephen Altschul, Warren Gish, David Lipman at the U.S. National Center for Biotechnology Information (NCBI), Webb Miller at the Pennsylvania State University, and Gene Myers at the University of Arizona. It is available on the web on [http://www.ncbi.nlm.nih.gov/BLAST/ the NCBI website] . Alternative implementations include [http://blast.wustl.edu/ WU-BLAST] and [http://www.fsa-blast.org/ FSA-BLAST] .

The original paper by Altschul, "et al."cite journal |author=Altschul SF, Gish W, Miller W, Myers EW, Lipman DJ |title=Basic local alignment search tool |journal=J Mol Biol |volume=215 |issue=3 |pages=403–410 |year=1990 |pmid=2231712 | url=http://www-math.mit.edu/~lippert/18.417/papers/altschuletal1990.pdf |doi = 10.1006/jmbi.1990.9999 ] was the most highly cited paper published in the 1990s. [ [http://www.sciencewatch.com/july-aug2000/sw_july-aug2000_page3.htm Sense from Sequences: Stephen F. Altschul on Bettering BLAST] . ScienceWatch July/August 2000.]

Input/Output

Input and output conform to the FASTA format.

Algorithm

BLAST

To run, BLAST requires a query sequence to search for, and a sequence to search against (also called the target sequence) or a sequence database containing multiple such sequences. BLAST will find subsequences in the database which are similar to subsequences in the query. In typical usage, the query sequence is much smaller than the database, e.g., the query may be one thousand nucleotides while the database is several billion nucleotides.

The main idea of BLAST is that there are often high-scoring segment pairs (HSP) contained in a statistically significant alignment. BLAST searches for high scoring sequence alignments between the query sequence and sequences in the database using a heuristic approach that approximates the Smith-Waterman algorithm. The exhaustive Smith-Waterman approach is too slow for searching large genomic databases such as GenBank. Therefore, the BLAST algorithm uses a heuristic approach that is less accurate than the Smith-Waterman but over 50 times faster. The speed and relatively good accuracy of BLAST are among the key technical innovation of the BLAST programs.

Here the algorithm of BLASTP (a protein to protein search) is introduced to present the concept of BLAST. [D.W. Mount (2004). " [http://www.bioinformaticsonline.org/ Bioinformatics: Sequence and Genome Analysis.] ". Cold Spring Harbor Press".]
# Remove low-complexity region or sequence repeats in the query sequence.
Low-complexity region means a region of a sequence is composed of few kinds of elements. These regions might give high scores that confuse the program to find the actual significant sequences in the database, so they should be filtered out. The regions will be marked with an X (protein sequences) or N (nucleic acid sequences) and then be ignored by the BLAST program. To filter out the low-complexity regions, the [http://www.ncbi.nlm.nih.gov/Education/BLASTinfo/Seg.html SEG] program is used for protein sequences and the program [ftp://ftp.ncbi.nlm.nih.gov/pub/agarwala/windowmasker/windowmasker_suppl.pdf DUST] is used for DNA sequences. On the other hand, the program [http://bighost.area.ba.cnr.it/BIG/GCGManual/xnu.html XNU] is used to mask off the tandem repeats in protein sequences.
# Make a k-letter word list of the query sequence.
Take k=3 for example, we list the words of length 3 in the query protein sequence (k is usually 11 for a DNA sequence) “sequentially”, until the last letter of the query sequence is included. The method can be illustrated in figure 1.
# List the possible matching words.
This step is one of the main differences between BLAST and FASTA. FASTA cares about all of the common words in the database and query sequences that are listed in step 2; however, BLAST cares about only the high-scoring words. The scores are created by comparing the word in the list in step 2 with all the 3-letter words. By using the scoring matrix (substitution matrix) to score the comparison of each residue pair, there are 20^3 possible match scores for a 3-letter word. For example, the score obtained by comparing PQG with PEG and PQA is 15 and 12, respectively. For DNA words, a match is scored as +5 and a mismatch as -4. After that, a neighborhood word score threshold T is used to reduce the number of possible matching words. The words whose scores are greater than the threshold T will remain in the possible matching words list, while those with lower scores will be discarded. For example, PEG is kept, but PQA is abandoned when T is 13.
# Organize the remaining high-scoring words into an efficient search tree.
This is for the purpose that the program can rapidly compare the high-scoring words to the database sequences.
# Repeat step 1 to 4 for each 3-letter word in the query sequence.
# Scan the database sequences for exact match with the remaining high-scoring words.
The BLAST program scans the database sequences for the remaining high-scoring word, such as PEG, of each position. If an exact match is found, this match is used to seed a possible ungapped alignment between the query and database sequences.
# Extend the exact matches to high-scoring segment pair (HSP).
#* The original version of BLAST stretches a longer alignment between the query and the database sequence in left and right direction, from the position where exact match is scanned. The extension doesn’t stop until the accumulated total score of the HSP begins to decrease. A simplified example is presented in figure 2.
#* To save more time, a newer version of BLAST, called BLAST2 or gapped BLAST, has been developed. BLAST2 adopts a lower neighborhood word score threshold to maintain the same level of sensitivity for detecting sequence similarity. Therefore, the possible matching words list in step 3 becomes longer. Next, the exact matched regions, within distance A from each other on the same diagonal in figure 3, will be joined as a longer new region. Finally, the new regions are then extended as the same method in the original version of BLAST, and the HSPs’ (High-scoring segment pair) scores of the extended regions are then created by using a substitution matrix as before.
# List all of the HSPs in the database whose score is high enough to be considered.
We list the HSPs whose scores are greater than the empirically determined cutoff score S. By examining the distribution of the alignment scores modeled by comparing random sequences, a cutoff score S can be determined such that its value is large enough to guarantee the significance of the remained HSPs.
# Evaluate the significance of the HSP score.
BLAST next assesses the statistical significance of each HSP score by exploiting the [http://www.itl.nist.gov/div898/handbook/eda/section3/eda366g.htm Gumbel extreme value distribution (EVD)] . (It is proved that the distribution of Smith-Waterman local alignment scores between two random sequences follows the Gumbel EVD, regardless of whether gaps are allowed in the alignment). In accordance with the Gumbel EVD, the probability p of observing a score S equal to or greater than x is given by the equation pleft( Sge x ight)=1-exp left( -e^{-lambda left( x-mu ight)} ight) ,where mu ={}^{left [ log left( Km'n' ight) ight] }!!diagup!!{}_{lambda }; The statistical parameters lambda and mathrm{K} are estimated by fitting the distribution of the ungapped local alignment scores, of the query sequence and a lot of shuffled versions (Global or local shuffling) of a database sequence, to the Gumbel extreme value distribution. Note that lambda and mathrm{K} depend upon the substitution matrix, gap penalties, and sequence composition (the letter frequencies).The m’ and n’ is the effective length of the query and database sequence, respectively. The original sequence length is shortened to the effective length to compensate for the edge effect (an alignment start near the end of one of the query or database sequence is likely not to have enough sequence to build an optimal alignment). They can be calculated as m'approx m-{}^{left( ln Kmn ight)}!!diagup!!{}_{H}; n'approx n-{}^{left( ln Kmn ight)}!!diagup!!{}_{H};, where mathrm{H} is the average expected score per aligned pair of residues in an alignment of two random sequences. Altschul and Gish gave the typical values, lambda = 0.318 , mathrm{K} = 0.13 , and mathrm{H} = 0.40 , for ungapped local alignment using [http://www.uky.edu/Classes/BIO/520/BIO520WWW/blosum62.htm BLOSUM62] as the substitution matrix. Using the typical values for assessing the significance is called the lookup table methods, and is not accurate. The expect score E of a database match is the number of times that an unrelated database sequence would obtain a score S higher than x by chance. The expectation E obtained in a search for a database of D sequences is given by
Eapprox 1-e^{-pleft( s>x ight)D}
Furthermore, when p<0.1, E could be approximated by the Poisson distribution as
Eapprox pD
Note that the E value accessing the significance of the HSP score here (for ungapped local alignment) is not identical to the one in the later step to evaluate the final gapped local alignment score, due to the variation of the statistical parameters.
# Make two or more HSP regions into a longer alignment.
Sometimes, we find two or more HSP regions in one database sequence that can be made into a longer alignment. This provides additional evidence of the relation between the query and database sequence. There are two methods, the Poisson method and the sum-of scores method, to compare the significance of the newly combined HSP regions. Suppose that there are two combined HSP regions with the sets of score (65, 40) and (52, 45), respectively. The Poisson method gives more significance to the set with the lower score of each set is higher (45>40). However, the sum-of-scores method prefers the first set, because 65+40 (105) is greater than 52+45(97). The original BLAST uses the Poisson method; gapped BLAST and the WU-BLAST use the sum-of scores method.
# Show the gapped Smith-Waterman local alignments of the query and each of the matched database sequences.
#* The original BLAST only generates ungapped alignments including the initially found HSPs individually, even when there is more than one HSP found in one database sequence.
#* BLAST2 versions produce a single alignment with gaps that can include all of the initially found HSP regions. Note that the computation of the score and its corresponding E score is involved with the adequate gap penalties.
# Report the matches whose expect score is lower than a threshold parameter E.

Parallel BLAST

Parallel BLAST versions are implemented using MPI and Pthreads, and have been ported to various platforms including Windows, Linux, Solaris, Mac OS X, and AIX. Popular approaches to parallelize BLAST include query distribution, hash table segmentation, computation parallelization, and database segmentation (partition) Fact|date=March 2008.

Program

The BLAST program can either be downloaded and run as a command-line utility "blastall" or accessed for free over the web. The BLAST web server, hosted by the NCBI, allows anyone with a web browser to perform similarity searches against constantly updated databases of proteins and DNA that include most of the newly sequenced organisms.

BLAST is actually a family of programs (all included in the blastall executable). These include:;Nucleotide-nucleotide BLAST (blastn): This program, given a DNA query, returns the most similar DNA sequences from the DNA database that the user specifies.;Protein-protein BLAST (blastp): This program, given a protein query, returns the most similar protein sequences from the protein database that the user specifies.;Position-Specific Iterative BLAST (PSI-BLAST): This program is used to find distant relatives of a protein. First, a list of all closely related proteins is created. These proteins are combined into a general "profile" sequence, which summarises significant features present in these sequences. A query against the protein database is then run using this profile, and a larger group of proteins is found. This larger group is used to construct another profile, and the process is repeated.
By including related proteins in the search, PSI-BLAST is much more sensitive in picking up distant evolutionary relationships than a standard protein-protein BLAST. ;Nucleotide 6-frame translation-protein (blastx): This program compares the six-frame conceptual translation products of a nucleotide query sequence (both strands) against a protein sequence database.;Nucleotide 6-frame translation-nucleotide 6-frame translation (tblastx): This program is the slowest of the BLAST family. It translates the query nucleotide sequence in all six possible frames and compares it against the six-frame translations of a nucleotide sequence database. The purpose of tblastx is to find very distant relationships between nucleotide sequences.;Protein-nucleotide 6-frame translation (tblastn): This program compares a protein query against the all six frame translations of a nucleotide sequence database.;Large numbers of query sequences (megablast): When comparing large numbers of input sequences via the command-line BLAST, "megablast" is much faster than running BLAST multiple times. It concatenates many input sequences together to form a large sequence before searching the BLAST database, then post-analyze the search results to glean individual alignments and statistical values.

Alternative versions

An extremely fast but considerably less sensitive alternative to BLAST that compares nucleotide sequences to the genome is BLAT (Blast Like Alignment Tool). A version designed for comparing multiple large genomes or chromosomes is BLASTZ.

Accelerated versions

*There are two main field-programmable gate array (FPGA) implementations of the BLAST algorithm. [http://www.progeniq.com Progeniq] is up to 100x faster than a software implementation running on the same processorFact|date=March 2008. TimeLogic [http://www.timelogic.com] offers a FPGA BLAST package called [http://www.timelogic.com/decypher_blast.html Tera-BLAST] .
*The Mitrion-C Open Bio Project is an ongoing effort to port blast to run on Mitrion FPGAs. It is available [http://mitc-openbio.sourceforge.net/ on SourceForge] .

References

ee also

*Needleman-Wunsch algorithm
*Smith-Waterman algorithm
*Sequence alignment
*Sequence alignment software
*Sequerome
*eTBLAST

External links

* [http://www.ncbi.nlm.nih.gov/BLAST/ NCBI-BLAST website]

Variations of BLAST

* [http://blast.wustl.edu/ WU-BLAST] &mdash; the original gapping BLAST with statistics, developed and maintained by Warren Gish at Washington University in St. Louis
* [http://www.ebi.ac.uk/Tools/blast EBI's BLAST Services] &mdash; EBI's main blast services page.
* [http://www.fsa-blast.org/ FSA-BLAST] &mdash; a new, faster but still accurate version of NCBI BLAST based on recently published algorithmic improvements
* [http://services.nbic.nl:4080/bb/cgi-bin/bb_login.cgi NBIC mpiBLAST] &mdash; at the Netherlands Bioinformatics Centre
* [http://www-users.cs.umn.edu/~rangwala/final_bglBLAST.pdf Parallel BLAST] &mdash; a dual scheduling BLAST tested on the Blue Gene/L
* [http://www.mpiblast.org/ mpiBLAST] &mdash; open-source parallel BLAST
* [http://developer.apple.com/darwin/projects/blast/ A/G BLAST] &mdash; implementation for PowerPC G4/G5 processors and Mac OS X, from Apple Computer's Advanced Computation Group and Genentech.
* [http://3d-alignment.eu STRAP] &mdash; the protein workbench [http://www.charite.de/bioinf/strap/ STRAP] contains a comfortable BLAST front-end with a cache for BLAST results

Commercial versions

* [http://dnasoftware.com/ThermoBLAST/tabid/110/Default.aspx ThermoBLAST by DNA Software Inc.] &mdash; scans entire genomes quickly and accurately combing the power of BLAST with the most advanced thermodynamics parameters
* [http://www.bioinformaticssolutions.com/products/ph/index.php PatternHunter] &mdash; an alternative software which provides similar functionality to BLAST while claiming increased speed and sensitivity
* [http://www.korilog.com/products KoriBlast] &mdash; a reliable graphical environment dedicated to sequence data mining. KoriBlast combines Blast searches with advanced data management capabilities and a state-of-the-art graphical user interface.

Tutorials

* [http://www.ncbi.nlm.nih.gov/Education/BLASTinfo/tut1.html NCBI-BLAST Tutorial]
* [http://www.openwetware.org/wiki/BLAST BLAST HOWTO] &mdash; at the [http://www.openwetware.org/ OpenWetWare wiki]
* [http://www.cshprotocols.org/cgi/content/full/2007/14/pdb.top17 Using the Basic Local Alignment Search Tool (BLAST)]


Wikimedia Foundation. 2010.

Игры ⚽ Нужна курсовая?
Synonyms:

Look at other dictionaries:

  • blast — blast; blast·er; blast·ie; blast·man; blast·ment; brach·y·blast; car·dio·blast; ce·ment·o·blast; chon·dro·blast; chro·mo·blast; cni·do·blast; coe·lo·blast; coe·no·blast; col·lo·blast; coun·ter·blast; cryp·to·blast; crys·tal·lo·blast; cy·to·blast; …   English syllables

  • BLAST — Saltar a navegación, búsqueda BLAST Desarrollador Altschul S.F., Gish W., Miller E.W., Lipman D.J., NCBI http://www.ncbi.nlm.nih.gov/BLAST/ Información general …   Wikipedia Español

  • Blast — (bl[.a]st), n. [AS. bl[=ae]st a puff of wind, a blowing; akin to Icel. bl[=a]str, OHG. bl[=a]st, and fr. a verb akin to Icel. bl[=a]sa to blow, OHG. bl[^a]san, Goth. bl[=e]san (in comp.); all prob. from the same root as E. blow. See {Blow} to… …   The Collaborative International Dictionary of English

  • BLAST — bezeichnet: eine junge, nicht endgültig differenzierte Zelle, siehe Blast (Biologie) einer britische Literaturzeitschrift, siehe Blast (Zeitschrift) einen Actionfilm, siehe Blast – Dem Terror entkommt niemand BLAST steht für: Basic Local… …   Deutsch Wikipedia

  • blast — /blast / (say blahst) noun 1. a sudden blowing or gust of wind. 2. the blowing of a trumpet, whistle, etc. 3. the sound produced by this. 4. a forcible stream of air from the mouth, from bellows, or the like. 5. Metallurgy air under pressure… …  

  • Blast! — may refer to:* Blast! , a mild English language (primarily British) expletive * Blast! (1972 film), a.k.a. The Final Comedown * Blast! (2004 film), an action/comedy/thriller film * Blast! (comic), a 1991 British comic * Blast! (musical), a 2001… …   Wikipedia

  • blast — n blight, nip (see under BLAST vb) Analogous words: destruction (see corresponding verb at DESTROY): extermination, extirpation, wiping out (see corresponding verbs at EXTERMINATE): ruin, wreck (see RUIN vb) blast vb Blast, blight, nip mean as… …   New Dictionary of Synonyms

  • Blast — Blast, v. t. [imp. & p. p. {Blasted}; p. pr. & vb. n. {Blasting}.] 1. To injure, as by a noxious wind; to cause to wither; to stop or check the growth of, and prevent from fruit bearing, by some pernicious influence; to blight; to shrivel. [1913… …   The Collaborative International Dictionary of English

  • blast — [blast, bläst] n. [ME < OE blæst, puff of wind < IE * bhlē , var. of base * bhel , to swell, blow up > BALL1, L flare] 1. a gust of wind; strong rush of air 2. the sound of a sudden rush of air or gas, as through a trumpet 3. a strong,… …   English World dictionary

  • Blast — bezeichnet: eine junge, nicht endgültig differenzierte Zelle, siehe Blast (Biologie) eine britische Literaturzeitschrift, siehe Blast (Zeitschrift) einen Actionfilm, siehe Blast – Dem Terror entkommt niemand BLAST steht für: Basic Local Alignment …   Deutsch Wikipedia

  • Blast (BD) — Blast Série Auteur Manu Larcenet Scénario Manu Larcenet Dessin Manu Larcenet Couleurs Manu Larcenet Genre(s) Roman graphique …   Wikipédia en Français

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”