Malfoy / BGREAT

de Bruijn Graph REAd mapping Tool
14 stars 2 forks source link

reverse( str.begin(), str.begin()); ? #5

Open lindenb opened 8 years ago

lindenb commented 8 years ago

Hi all, I was just passing by, I saw : https://github.com/Malfoy/BGREAT/blob/master/aligner.cpp#L141

reverse( str.begin(), str.begin()); 

shouldn't it be

reverse( str.begin(), str.end()); 

?