Skip to content

Commit

Permalink
Fixed a bug in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Bo Li committed Feb 3, 2016
1 parent e2b837e commit d522e60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ PROGRAMS = rsem-extract-reference-transcripts rsem-synthesis-reference-transcrip

all : $(PROGRAMS)

$(SAMLIBS) :
$(SAMTOOLS)/libbam.a : $(SAMTOOLS)/$(HTSLIB)/libhts.a

$(SAMTOOLS)/$(HTSLIB)/libhts.a :
cd $(SAMTOOLS) ; ${MAKE} all

Transcript.h : utils.h
Expand Down Expand Up @@ -151,5 +153,6 @@ ebseq :

clean :
rm -f *.o *~ $(PROGRAMS)
cd $(SAMTOOLS) ; ${MAKE} clean
cd $(SAMTOOLS) ; ${MAKE} clean
rm -f $(SAMLIBS)
cd EBSeq ; ${MAKE} clean
1 change: 1 addition & 0 deletions WHAT_IS_NEW
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
RSEM v1.2.28

- Fixed a bug in RSEM v1.2.27 that can lead to assertion errors for parsing GTF files
- Fixed a bug in Makefile

--------------------------------------------------------------------------------------------

Expand Down

0 comments on commit d522e60

Please sign in to comment.