Skip to content

Commit 25d3e40

Browse files
committed
removed extraneous #include for hts support. updated version number. added dependencies in Makefile so that users who clone can compile with htslib support
1 parent add224c commit 25d3e40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ $(PROGS): $(addprefix smithlab_cpp/, \
4242
OptionParser.o MappedRead.o)
4343

4444
ifdef HAVE_HTSLIB
45-
preseq to-mr: $(addprefix smithlab_cpp/, htslib_wrapper.o)
45+
preseq to-mr: $(addprefix smithlab_cpp/, \
46+
htslib_wrapper_deprecated.o cigar_utils.o)
4647
endif
4748

4849
preseq: continued_fraction.o load_data_for_complexity.o moment_sequence.o

src/load_data_for_complexity.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ empty_pq(GenomicRegion &curr_gr, GenomicRegion &prev_gr,
181181
*/
182182
#ifdef HAVE_HTSLIB
183183
// switching dependency on bamtools to samtools
184-
#include <htslib_wrapper.hpp>
185184
#include "htslib_wrapper_deprecated.hpp"
186185

187186
size_t

src/preseq.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ using std::to_string;
5656
using std::mt19937;
5757
using std::max;
5858

59-
static const string preseq_version = "3.0.2";
59+
static const string preseq_version = "3.1.1";
6060

6161
template <typename T> T
6262
get_counts_from_hist(const vector<T> &h) {

0 commit comments

Comments
 (0)