You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem occurs where revcomp changes the size of the buffer for the reverse
read's reverse compliment. Since the reverse reads are changing in size, this
realloc() is getting exercised, and it doesn't quite work.
Original comment by wltri...@gmail.com on 4 Dec 2011 at 4:39
A colleague of mine friendly fixed that problem exchanging lines 351 and 352
with:
d->seq.s=(char *) realloc(s->seq.s, (d->seq.a=(s->seq.n)*1000));
d->qual.s=(char *) realloc(s->qual.s, (d->qual.a=(s->qual.n)*1000));
She said its a little bit dirty, but it works fine for me!
Original comment by boykeb...@gmail.com on 6 Dec 2011 at 6:36
Original issue reported on code.google.com by
boykeb...@gmail.com
on 30 Nov 2011 at 12:34Attachments:
The text was updated successfully, but these errors were encountered: