Changeset 255
- Timestamp:
- 12/12/07 03:04:47 (1 year ago)
- Files:
-
- trunk/motility/src/LiteralMotif.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/motility/src/LiteralMotif.cc
r254 r255 48 48 MotifMatchList * LiteralMotif::find_forward_matches(const DnaSequence& seq) const 49 49 { 50 printf("OFFSET IS: %d\n", _offset);51 50 MotifMatchList * v = new MotifMatchList(); 52 51 const unsigned int length = _motif.length(); … … 60 59 v->add(new MotifMatch(_offset + pos, _offset + pos + length, 61 60 dna.substr(pos, length))); 62 printf("pos: %d\n", _offset + pos); 63 61 64 62 pos = dna.find(_motif, pos + 1); 65 63 }
