freebsd-ports/biology/ssaha/files/patch-SequenceReaderFasta.h
Felippe de Meirelles Motta 702ce22305 SSAHA is a software tool for very fast matching and alignment of DNA
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)
2008-06-21 00:01:57 +00:00

11 lines
446 B
C++

--- ./SequenceReader/SequenceReaderFasta.h.orig 2004-03-01 13:51:29.000000000 -0300
+++ ./SequenceReader/SequenceReaderFasta.h 2008-06-12 15:39:31.000000000 -0300
@@ -55,7 +55,7 @@
{
public:
SequenceReaderFileState( SequenceNumber lsn, std::streampos fp ) :
- filePos_(fp), SequenceReaderState(lsn) {}
+ SequenceReaderState(lsn), filePos_(fp) {}
// no point in making this private as it's const
const std::streampos filePos_;
};