702ce22305
sequences. It stands for Sequence Search and Alignment by Hashing Algorithm. It achieves its fast search speed by converting sequence information into a `hash table' data structure, which can then be searched very rapidly for matches. WWW: http://www.sanger.ac.uk/Software/analysis/SSAHA/ PR: ports/124525 Submitted by: Fernan Aguero <fernan@iib.unsam.edu.ar> Approved by: gabor (mentor, implicit)
13 lines
436 B
C++
13 lines
436 B
C++
--- ./QueryManager/MatchStoreUngapped.h.orig 2004-03-01 13:51:29.000000000 -0300
|
|
+++ ./QueryManager/MatchStoreUngapped.h 2008-06-12 15:39:31.000000000 -0300
|
|
@@ -60,8 +60,8 @@
|
|
public:
|
|
MatchAlgorithmUngapped
|
|
( int minToProcess, int numRepeats ):
|
|
- minToProcess_( minToProcess ),
|
|
- MatchAlgorithm( numRepeats )
|
|
+ MatchAlgorithm( numRepeats ),
|
|
+ minToProcess_( minToProcess )
|
|
{}
|
|
|
|
virtual void generateMatches
|