Changeset 3561
- Timestamp:
- Jan 4, 2017, 1:55:10 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.13-stable merged: 3440,3443-3445,3468,3494,3504,3556-3559
- Property svn:mergeinfo changed
-
trunk/NEWS
r3550 r3561 19 19 20 20 yat 0.13.x series from http://dev.thep.lu.se/yat/svn/branches/0.13-stable 21 22 version 0.13.1 (released 4 January 2017) 23 - fixed bug in pkg-config file 'yat.pc' (bug #850) 24 - improved detection of boost thread detection (bug #863) 25 26 A complete list of closed tickets can be found here [[br]] 27 http://dev.thep.lu.se/yat/query?status=closed&milestone=yat+0.13 21 28 22 29 version 0.13 (released 20 November 2015) -
trunk/configure.ac
r3550 r3561 247 247 # skip boost link tests if boost is not wanted (--without-boost) 248 248 AS_IF([test x"$want_boost" = x"yes"],[ 249 AX_BOOST_SYSTEM 250 LIBS="$BOOST_SYSTEM_LIB $LIBS" 249 251 AX_BOOST_THREAD 250 AX_BOOST_SYSTEM251 252 YAT_CPP_ADD_FLAG([CPPFLAGS], [$BOOST_CPPFLAGS]) 252 253 YAT_LD_ADD_FLAG([LDFLAGS], [$BOOST_LDFLAGS]) 253 # boost tests above only test compilation, so let's try link in the libs 254 LIBS="$LIBS $BOOST_THREAD_LIB $BOOST_SYSTEM_LIB" 254 LIBS="$BOOST_THREAD_LIB $LIBS" 255 # linking tests in AX_BOOST_SYSTEM occasionaly miss to detect 256 # missing lib (see ticket #719), so link specifically here to catch 257 # that case. 255 258 AC_MSG_CHECKING([for boost::thread_specific_ptr]) 256 259 AC_LINK_IFELSE([AC_LANG_PROGRAM([@%:@include <boost/thread/tss.hpp>], … … 533 536 AS_IF([test x$with_htslib != x"no"], [ 534 537 # htslib comes with a pc file, so we can require htslib in yat.pc 535 AS_IF([test x$ with_hts = x"yes"], [538 AS_IF([test x$have_hts = x"yes"], [ 536 539 YAT_VAR_REMOVE([YAT_PC_LIBS_PRIVATE], [$BAM_LIBS -lz]) 537 540 YAT_SET_CONTAINS([$yat_libyat_la_LIBADD], [-lhts], [ … … 544 547 # require zlib 545 548 YAT_VAR_REMOVE([YAT_PC_LIBS_PRIVATE], [-lz]) 546 YAT_PC_REQUIRES="$YAT_PC_REQUIRES zlib"547 549 YAT_SET_CONTAINS([$yat_libyat_la_LIBADD], [-lz], [ 548 550 YAT_PC_REQUIRES_PRIVATE="$YAT_PC_REQUIRES_PRIVATE zlib" -
trunk/doc/first_page.doxygen.in
r3210 r3561 5 5 Copyright (C) 2003, 2004 Jari Häkkinen 6 6 Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson 7 Copyright (C) 2010, 2013, 2014 Peter Johansson7 Copyright (C) 2010, 2013, 2014, 2015 Peter Johansson 8 8 9 9 This file is part of the yat library, http://dev.thep.lu.se/yat … … 54 54 55 55 <li> Wrapper classes for <a 56 href="http:// samtools.sourceforge.net/">samtools</a> allowing56 href="http://www.htslib.org//">htslib</a> allowing 57 57 handling BAM reads with <a 58 58 href="http://www.sgi.com/tech/stl/table_of_contents.html">Standard -
trunk/m4/version.m4
r3419 r3561 2 2 # 3 3 # Copyright (C) 2008, 2009 Jari Häkkinen, Peter Johansson 4 # Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015 Peter Johansson4 # Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2017 Peter Johansson 5 5 # 6 6 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 80 80 # yat-0.12.2 9:2:0 81 81 # yat-0.13 10:0:0 82 # yat-0.13.1 10:1:0 82 83 # 83 84 # *Accidently, the libtool number was not updated for yat 0.5 -
trunk/yat/statistics/Fisher.h
r3455 r3561 73 73 /// chi-squared calculation 74 74 /// 75 /// \since Constructor with argument was introduced in yat 0.13 76 /// 75 77 Fisher(bool yates=false); 76 78
Note: See TracChangeset
for help on using the changeset viewer.