Skip to content

Commit

Permalink
Changed the default filtering threshold level.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Mapleson committed Apr 29, 2016
1 parent 9404738 commit e99e9ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/junction_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const string ST_IPOS_RULES_FILE = "selftrain_initial_pos";
const string ST_INEG_RULES_FILE = "selftrain_initial_neg";
const uint16_t DEFAULT_FILTER_THREADS = 1;
const uint16_t DEFAULT_SELFTRAIN_TREES = 100;
const double DEFAULT_FILTER_THRESHOLD = 0.75;
const double DEFAULT_FILTER_THRESHOLD = 0.625;


class JunctionFilter {
Expand Down
3 changes: 3 additions & 0 deletions tests/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ check_unit_tests_SOURCES = bam_tests.cpp \
check_unit_tests_CXXFLAGS = -O0 @AM_CXXFLAGS@ @CXXFLAGS@

check_unit_tests_CPPFLAGS = -isystem $(top_srcdir)/deps/htslib-1.3 \
-isystem $(top_srcdir)/deps/ranger-0.3.8/include \
-I$(top_srcdir)/lib/include \
-DRESOURCESDIR=\"$(top_srcdir)/tests/resources\" \
-DDATADIR=\"$(datadir)\" \
Expand All @@ -40,12 +41,14 @@ check_unit_tests_CPPFLAGS = -isystem $(top_srcdir)/deps/htslib-1.3 \

check_unit_tests_LDFLAGS = -L../lib \
-L../deps/htslib-1.3 \
-L../deps/ranger-0.3.8 \
@AM_LDFLAGS@ \
@LDFLAGS@

check_unit_tests_LDADD = libgtest.la \
-lportcullis \
-lphts \
-lranger \
@AM_LIBS@

clean-local: clean-local-check
Expand Down

0 comments on commit e99e9ec

Please sign in to comment.