Skip to content

Commit

Permalink
fix bug for transcript
Browse files Browse the repository at this point in the history
  • Loading branch information
shaomingfu committed Jun 9, 2018
1 parent 30a9c3c commit ec471aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/gtf/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lib_LIBRARIES = libgtf.a

UTILDIR = ../util
UTILDIR = $(top_srcdir)/lib/util

libgtf_a_CPPFLAGS = -I$(UTILDIR)

Expand Down
2 changes: 1 addition & 1 deletion lib/gtf/transcript.cc
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ vector<PI32> transcript::get_intron_chain() const
{
int32_t q = exons[k].first;
v.push_back(PI32(p, q));
int32_t p = exons[k].second;
p = exons[k].second;
}
return v;
}
Expand Down

0 comments on commit ec471aa

Please sign in to comment.