Skip to content

Commit 35c1ff2

Browse files
committed
bug fix for an index out of range error in v1.3.1
1 parent 5241e0a commit 35c1ff2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

rlink.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12235,7 +12235,7 @@ int build_graphs(BundleData* bdata) {
1223512235
if(idx<0) guideedge.Add(ge1);
1223612236
else if(guideedge[idx].endval>guides[g]->exons[0]->end) guideedge[idx].endval=guides[g]->exons[0]->end;
1223712237
GEdge ge2(guides[g]->end,guides[g]->exons.Last()->start,s);
12238-
idx=guideedge.IndexOf(ge1);
12238+
idx=guideedge.IndexOf(ge2);
1223912239
if(idx<0) guideedge.Add(ge2);
1224012240
else if(guideedge[idx].endval<guides[g]->exons.Last()->start) guideedge[idx].endval=guides[g]->exons.Last()->start;
1224112241
}

stringtie.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "proc_mem.h"
1212
#endif
1313

14-
#define VERSION "1.3.1"
14+
#define VERSION "1.3.1b"
1515

1616
//#define DEBUGPRINT 1
1717

0 commit comments

Comments
 (0)