Changeset 255

Show
Ignore:
Timestamp:
12/12/07 03:04:47 (1 year ago)
Author:
t
Message:

removed debugging prints

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/motility/src/LiteralMotif.cc

    r254 r255  
    4848MotifMatchList * LiteralMotif::find_forward_matches(const DnaSequence& seq) const 
    4949{ 
    50   printf("OFFSET IS: %d\n", _offset); 
    5150  MotifMatchList * v = new MotifMatchList(); 
    5251  const unsigned int length = _motif.length(); 
     
    6059    v->add(new MotifMatch(_offset + pos, _offset + pos + length, 
    6160                          dna.substr(pos, length))); 
    62     printf("pos: %d\n", _offset + pos); 
    63                             
     61 
    6462    pos = dna.find(_motif, pos + 1); 
    6563  }