Smith–Waterman algorithm: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m →‎References: rm unrelated ref.
add cite for llnl/jgi gpu s-w paper
Line 18: Line 18:


===GPU===
===GPU===
Recent work developed at [[Lawrence Livermore National Laboratory]] and the US Department of Energy's [[Joint Genome Institute]] accelerates Smith-Waterman local sequence alignment searches using [[graphics processing units]] (GPUs) with preliminary results showing a 2x speed-up over software implementations. A similar method has already been implemented in the Biofacet software since 1997, with the same speed-up factor.<ref>{{cite web |url=http://www.genomequest.com/contact-bioinformatics-ht.html |title=Bioinformatics High Throughput Sequence Seatch and Analysis (white paper) |accessdate=2008-05-09 |publisher=GenomeQuest}}</ref>
Recent work developed at [[Lawrence Livermore National Laboratory]] and the US Department of Energy's [[Joint Genome Institute]] accelerates Smith-Waterman local sequence alignment searches using [[graphics processing units]] (GPUs) with preliminary results showing a 2x speed-up over software implementations<ref>{{cite web |url=http://www.springerlink.com/content/w3727h42513362xn |title=GPU Accelerated Smith-Waterman |publisher=SpringerLink}}</ref>. A similar method has already been implemented in the Biofacet software since 1997, with the same speed-up factor.<ref>{{cite web |url=http://www.genomequest.com/contact-bioinformatics-ht.html |title=Bioinformatics High Throughput Sequence Seatch and Analysis (white paper) |accessdate=2008-05-09 |publisher=GenomeQuest}}</ref>


A [[GPGPU]] implementation of the algorithm in the [[CUDA]] language by [[NVIDIA]] is also available.<ref name="Manavski2008">{{cite journal |author=Manavski SA, Valle G |title=CUDA compatible GPU cards as efficient hardware accelerators for Smith-Waterman sequence alignment |journal=BMC Bioinformatics |volume=9 |issue=Suppl 2:S10 |year=2008 |url=http://www.biomedcentral.com/1471-2105/9/S2/S10 |doi=10.1186/1471-2105-9-S2-S10 |pages=S10}}</ref> The performance tests on this solution show up to a 30 fold speed increase when compared to reference CPU-based implementations on the same machine.
A [[GPGPU]] implementation of the algorithm in the [[CUDA]] language by [[NVIDIA]] is also available.<ref name="Manavski2008">{{cite journal |author=Manavski SA, Valle G |title=CUDA compatible GPU cards as efficient hardware accelerators for Smith-Waterman sequence alignment |journal=BMC Bioinformatics |volume=9 |issue=Suppl 2:S10 |year=2008 |url=http://www.biomedcentral.com/1471-2105/9/S2/S10 |doi=10.1186/1471-2105-9-S2-S10 |pages=S10}}</ref> The performance tests on this solution show up to a 30 fold speed increase when compared to reference CPU-based implementations on the same machine.

Revision as of 18:56, 11 November 2008

The Smith-Waterman algorithm is a well-known algorithm for performing local sequence alignment; that is, for determining similar regions between two nucleotide or protein sequences. Instead of looking at the total sequence, the Smith-Waterman algorithm compares segments of all possible lengths and optimizes the similarity measure.

Background

The algorithm was first proposed by Temple Smith and Michael Waterman in 1981.[1] Like the Needleman-Wunsch algorithm, of which it is a variation, Smith-Waterman is a dynamic programming algorithm. As such, it has the desirable property that it is guaranteed to find the optimal local alignment with respect to the scoring system being used (which includes the substitution matrix and the gap-scoring scheme). The main difference to the Needleman-Wunsch algorithm is that negative scoring matrix cells are set to zero, which renders the (thus positively scoring) local alignments visible. Backtracing starts at the highest scoring matrix cell and proceeds until a cell with score zero is encountered, yielding the highest scoring local alignment.

One motivation for local alignment is the difficulty of obtaining correct alignments in regions of low similarity between distantly related biological sequences, because mutations have added too much 'noise' over evolutionary time to allow for a meaningful comparison of those regions. Local alignment avoids such regions altogether and focuses on those with a positive score, i.e. those with an evolutionary conserved signal of similarity. A prerequisite for local alignment is a negative expectation score. The expectation score is defined as the average score that the scoring system (substitution matrix and gap penalties) would yield for a random sequence.

Another motivation for using local alignments is that there is a reliable statistical model (developed by Karlin and Altschul) for optimal local alignments. The alignment of unrelated sequences tends to produce optimal local alignment scores which follow an extreme value distribution. This property allows programs to produce an expectation value for the optimal local alignment of two sequences, which is a measure of how often two unrelated sequences would produce an optimal local alignment whose score is greater than or equal to the observed score. Very low expectation values indicate that the two sequences in question might be homologous, meaning they might share a common ancestor.

However, the Smith-Waterman algorithm is fairly demanding of time and memory resources: in order to align two sequences of lengths m and n, O(mn) time and space are required. As a result, it has largely been replaced in practical use by the BLAST algorithm; although not guaranteed to find optimal alignments, BLAST is much more efficient.

An implementation of the Smith-Waterman Algorithm, SSEARCH, is available in the FASTA sequence analysis package from [4]. This implementation includes Altivec accelerated code for PowerPC G4 and G5 processors that speeds up comparisons 10 - 20-fold, using a modification of the Wozniak, 1997 approach[2], and an SSE2 vectorization developed by Farrar [3] making optimal protein database searches quite practical.

Accelerated versions

FPGA

Other recent work developed by Cray demonstrates acceleration of the Smith-Waterman algorithm using a reconfigurable computing platform based on FPGA chips.[4] The results show up to 28x speed-up over standard microprocessor-based solutions. An FPGA based version of the Smith-Waterman algorithm shows FPGA (Virtex-4) speedups up to 100x[5] over a 2.2 GHz Opteron processor.[6]

GPU

Recent work developed at Lawrence Livermore National Laboratory and the US Department of Energy's Joint Genome Institute accelerates Smith-Waterman local sequence alignment searches using graphics processing units (GPUs) with preliminary results showing a 2x speed-up over software implementations[7]. A similar method has already been implemented in the Biofacet software since 1997, with the same speed-up factor.[8]

A GPGPU implementation of the algorithm in the CUDA language by NVIDIA is also available.[9] The performance tests on this solution show up to a 30 fold speed increase when compared to reference CPU-based implementations on the same machine.

SSE

In 2000, a fast implementation of the Smith-Waterman algorithm using the SIMD technology available in Intel Pentium MMX processors and similar technology was described in a publication by Rognes and Seeberg[10]. In contrast to the Wozniak (1997) approach, the new implementation was based on vectors parallel with the query sequence, not diagonal vectors. The company Sencel Bioinformatics has applied for a patent covering this approach. Sencel is developing the software further and provides executables for academic use free of charge.

A SSE2 vectorization of the algorithm (Farrar, 2007) is now available providing an 8-fold speedup on Intel/AMD processors with SSE2 extensions.[3] When running on Intel processor using the new Intel Core microarchitecture the SSE2 implementation achieves a 20-fold increase.

Danish bioinformatics company CLC bio has achieved speed-ups of close to 200 over standard software implementations with SSE2 on a Intel 2.17 GHz Core 2 Duo CPU, according to a publicly available white paper.

Accelerated version of the Smith-Waterman algorithm, on Intel and AMD based Linux servers, is supported by the GenCore 6 package, offered by Biocceleration. Performance benchmarks of this software package show up to 10 fold speed acceleration relative to standard software implementation on the same processor.

Currently the only company in bioinformatics to offer both SSE and FPGA solutions accelerating Smith-Waterman, CLC bio has achieved speed-ups of more than 110 over standard software implementations with CLC Bioinformatics Cube.

The TimeLogic DeCypher and CodeQuest systems also accelerate Smith-Waterman and Framesearch using FPGA technology.

Cell Broadband Engine

A paper[11] describing a port of the Striped Smith-Waterman[3] to the Cell Broadband Engine reports speeds of 32 GCUPS on an IBM QS20 blade and 12 GCUPS on a Sony PlayStation 3.

References

  1. ^ Smith TF, Waterman MS (1981). "Identification of Common Molecular Subsequences" (PDF). Journal of Molecular Biology. 147: 195–197. doi:10.1016/0022-2836(81)90087-5.
  2. ^ Wozniak A (1997). "Using video-oriented instructions to speed up sequence comparison" (PDF). Comput Appl Biosci. 13 (2): 145–50.
  3. ^ a b c Farrar M (2007). "Striped Smith–Waterman speeds database searches six times over other SIMD implementations" (PDF). Bioinformatics. 23: 156–161. doi:10.1093/bioinformatics/btl582. PMID 17110365.
  4. ^ Cray Computer Corp, "Smith-Waterman Solution for Life Sciences".
  5. ^ FPGA 100x Papers: [1], [2], and [3]
  6. ^ Progeniq Pte Ltd, "White Paper - Accelerating Intensive Applications at 10x-50x Speedup to Remove Bottlenecks in Computational Workflows".
  7. ^ "GPU Accelerated Smith-Waterman". SpringerLink.
  8. ^ "Bioinformatics High Throughput Sequence Seatch and Analysis (white paper)". GenomeQuest. Retrieved 2008-05-09.
  9. ^ Manavski SA, Valle G (2008). "CUDA compatible GPU cards as efficient hardware accelerators for Smith-Waterman sequence alignment". BMC Bioinformatics. 9 (Suppl 2:S10): S10. doi:10.1186/1471-2105-9-S2-S10.{{cite journal}}: CS1 maint: unflagged free DOI (link)
  10. ^ Rognes T and Seeberg E (2000). "Six-fold speed-up of Smith-Waterman sequence database searches using parallel processing on common microprocessors" (PDF). Bioinformatics. 16: 699–706.
  11. ^ Farrar M S (2008). "Optimizing Smith-Waterman for the Cell Broadband Engine". {{cite journal}}: Cite journal requires |journal= (help)

External links

  • JAligner — an open source Java implementation of the Smith-Waterman algorithm
  • B.A.B.A. — an applet (with source) which visually explains the algorithm.
  • FASTA/SSEARCH at the EBI's FASTA/SSEARCH services page.

See also