Changeset 3188
- Timestamp:
- Mar 25, 2014, 11:24:29 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/0.11-stable merged: 3145-3146,3155-3156,3158-3159,3161,3163-3164,3181-3182,3184-3186
- Property svn:mergeinfo changed
-
trunk/NEWS
r3157 r3188 10 10 11 11 yat 0.11.x series from http://dev.thep.lu.se/yat/svn/branches/0.11-stable 12 13 version 0.11.2 (released 25 March 2014) 14 - Fixed bug that error in OutBamFile::write was not detected (see r3163) 15 - Fixed bug that `-lgsl` was not included in `yat-config --libs` (bug #788) 16 17 A complete list of closed tickets can be found here [[br]] 18 http://dev.thep.lu.se/yat/query?status=closed&milestone=yat+0.11.2 12 19 13 20 version 0.11.1 (released 18 December 2013) … … 339 346 Copyright (C) 2010, 2011 Peter Johansson 340 347 Copyright (C) 2012 Jari Häkkinen, Peter Johansson 341 Copyright (C) 2013 Peter Johansson348 Copyright (C) 2013, 2014 Peter Johansson 342 349 343 350 This file is part of yat library, http://dev.thep.lu.se/yat -
trunk/README.developer
r3144 r3188 106 106 '''Internal Interface''' 107 107 108 Helper functions and classes that are not part of yat API should either be 109 labeled with doxygen flag `\internal` or placed in sub-namespace `detail`. 108 Helper functions and classes that are not part of yat API should 109 either be labeled with doxygen flag `\internal` or placed in 110 sub-namespace `detail`. Functionality placed in namespace `detail` 111 should be excluded from doxygen input using a pattern like this: 112 113 /// \cond IGNORE_DOXYGEN 114 namespace detail { 115 116 <Some very detailed code here> 117 118 } 119 /// \endcode 110 120 111 121 = Build = … … 444 454 Copyright (C) 2004 Jari Häkkinen 445 455 Copyright (C) 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson 446 Copyright (C) 2010, 2011, 2012, 2013 Peter Johansson456 Copyright (C) 2010, 2011, 2012, 2013, 2014 Peter Johansson 447 457 448 458 This file is part of yat library, http://dev.thep.lu.se/yat -
trunk/configure.ac
r3111 r3188 10 10 # Copyright (C) 2010, 2011 Peter Johansson 11 11 # Copyright (C) 2012 Jari Häkkinen, Peter Johansson 12 # Copyright (C) 2013 Peter Johansson12 # Copyright (C) 2013, 2014 Peter Johansson 13 13 # 14 14 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 494 494 YAT_PC_LIBS=$YAT_LIBS 495 495 # Dependency to GSL is noted via 'Requires' field 496 YAT_VAR_REMOVE([YAT_P RIMARY_LIBS], [-lgsl $YAT_CBLAS_LIB $LIBM])496 YAT_VAR_REMOVE([YAT_PC_LIBS], [-lgsl $YAT_CBLAS_LIB $LIBM]) 497 497 AC_SUBST([YAT_PC_LIBS]) 498 498 -
trunk/m4/version.m4
r3144 r3188 2 2 # 3 3 # Copyright (C) 2008, 2009 Jari Häkkinen, Peter Johansson 4 # Copyright (C) 2010, 2011, 2012, 2013 Peter Johansson4 # Copyright (C) 2010, 2011, 2012, 2013, 2014 Peter Johansson 5 5 # 6 6 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 75 75 # yat-0.11 8:0:0 76 76 # yat-0.11.1 8:1:0 77 # yat-0.11.2 8:2:0 77 78 # 78 79 # *Accidently, the libtool number was not updated for yat 0.5 -
trunk/test/yat_config_test.sh
r3114 r3188 2 2 # $Id$ 3 3 # 4 # Copyright (C) 2011, 2012, 2013 Peter Johansson4 # Copyright (C) 2011, 2012, 2013, 2014 Peter Johansson 5 5 # 6 6 # This file is part of the yat library, http://dev.thep.lu.se/yat … … 42 42 grep 'for more information' stderr || exit_fail 43 43 44 run sh 0 $prog --libs 45 grep lgsl stdout || exit_fail 46 47 run sh 0 $prog --libs-without-cblas 48 grep lgsl stdout || exit_fail 49 44 50 exit_success -
trunk/yat/omic/BamHeader.h
r2999 r3188 5 5 6 6 /* 7 Copyright (C) 2012, 2013 Peter Johansson7 Copyright (C) 2012, 2013, 2014 Peter Johansson 8 8 9 9 This file is part of the yat library, http://dev.thep.lu.se/yat … … 34 34 35 35 /** 36 Wrapper around bam_header_t struct.36 \brief Wrapper around bam_header_t struct. 37 37 38 Class is typically created within InBamFile 38 Class is typically created via InBamFile::header(). 39 40 It is possible to copy and assign a BamHeader, but note that a 41 BamHeader does not own underlying data. The underlying data is 42 owned by the InBamFile and the BamHeader is thus invalid after 43 the corresponding InBamFile has been destroyed. 39 44 40 45 \since New in yat 0.10 … … 52 57 values in variables \a tid, \a begin and \a end. \a reg is 53 58 1-based and \a begin and \a end are 0-based, i.e., 54 "chr2:100,000-200,000" will set \a begin = 99 000and \a end =59 "chr2:100,000-200,000" will set \a begin = 99999 and \a end = 55 60 200000. 56 61 … … 77 82 \brief inverse of target_name(size_t) 78 83 79 \note If \a name does not exist, behaviour is un expected.84 \note If \a name does not exist, behaviour is undefined. 80 85 81 86 \since new in yat 0.11 -
trunk/yat/regression/KernelBox.h
r2119 r3188 9 9 Copyright (C) 2006 Jari Häkkinen 10 10 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 11 Copyright (C) 2014 Peter Johansson 11 12 12 13 This file is part of the yat library, http://dev.thep.lu.se/yat … … 37 38 class KernelBox : public Kernel 38 39 { 39 40 40 public: 41 41 /// … … 44 44 KernelBox(void); 45 45 46 / //47 ///Function calculating kernel value as \f$ w(x)=1\f$ if \f$|x|\le 148 ///\f$, \f$ w(x)=0 \f$ otherwise.49 ///46 /** 47 Function calculating kernel value as \f$ w(x)=1\f$ if \f$|x|\le 1 48 \f$, \f$ w(x)=0 \f$ otherwise. 49 */ 50 50 double operator()(const double) const; 51 51 52 52 private: 53 53 }; -
trunk/yat/utility/CommandLine.h
r3114 r3188 6 6 /* 7 7 Copyright (C) 2007, 2008, 2009 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2010, 2011, 2012, 2013 Peter Johansson8 Copyright (C) 2010, 2011, 2012, 2013, 2014 Peter Johansson 9 9 10 10 This file is part of the yat library, http://dev.thep.lu.se/yat … … 209 209 210 210 // use cond to make doxygen ignore this privat class 211 /// \cond yat_ignore_this211 /// \cond IGNORE_DOXYGEN 212 212 struct OptionCompare 213 213 { -
trunk/yat/utility/Queue.h
r3062 r3188 66 66 67 67 /** 68 \brief C reate a Queue with no elements68 \brief Copy constructor 69 69 70 70 \note is not thread safe -
trunk/yat/utility/iterator_traits.h
r2472 r3188 7 7 Copyright (C) 2007 Jari Häkkinen, Peter Johansson 8 8 Copyright (C) 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 Copyright (C) 2010, 2011 Peter Johansson9 Copyright (C) 2010, 2011, 2014 Peter Johansson 10 10 11 11 This file is part of the yat library, http://dev.thep.lu.se/yat … … 55 55 56 56 57 /// \cond IGNORE_DOXYGEN 58 57 59 namespace detail { 58 60 /** … … 83 85 84 86 } // namespace detail 87 88 /// \endcond 85 89 86 90 … … 106 110 107 111 112 /// \cond IGNORE_DOXYGEN 108 113 namespace detail { 109 114 /** … … 136 141 }; 137 142 } // namespace detail 143 144 /// \endcond 145 138 146 139 147 /** … … 165 173 }; 166 174 175 /// \cond IGNORE_DOXYGEN 167 176 namespace detail { 168 177 /** … … 174 183 check_iterator_is_unweighted(utility::unweighted_iterator_tag x){} 175 184 } // namespace detail 185 186 /// \endcond 176 187 177 188 /** … … 187 198 188 199 200 /// \cond IGNORE_DOXYGEN 189 201 namespace detail { 190 202 … … 380 392 } // namespace detail 381 393 394 /// \endcond 395 396 382 397 /** 383 398 The purpose of this class is to allow polymorphism between -
trunk/yat/utility/utility.h
r3177 r3188 8 8 Copyright (C) 2006 Jari Häkkinen 9 9 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 10 Copyright (C) 2009, 2010, 2011, 2012, 2013 Peter Johansson10 Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Peter Johansson 11 11 12 12 This file is part of the yat library, http://dev.thep.lu.se/yat … … 274 274 T log2(T x) { return std::log(x)/M_LN2; } 275 275 276 /// \cond IGNORE_DOXYGEN 277 276 278 // private namespace 277 279 namespace detail { 278 280 279 281 /** 282 \internal 283 280 284 \brief convert s to t 281 285 … … 328 332 329 333 } // end of namespace detail 334 335 /// \endcond 330 336 331 337 … … 478 484 } 479 485 486 /// \cond IGNORE_DOXYGEN 480 487 namespace detail { 481 488 template<typename T> … … 518 525 } // of namespace detail 519 526 527 /// \endcond 528 520 529 }}} // of namespace utility, yat, and theplu 521 530 -
trunk/yat/utility/yat_assert.h
r3114 r3188 5 5 /* 6 6 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 7 Copyright (C) 2009, 2010, 2013 Peter Johansson7 Copyright (C) 2009, 2010, 2013, 2014 Peter Johansson 8 8 9 9 This file is part of the yat library, http://dev.thep.lu.se/yat … … 33 33 namespace utility { 34 34 35 /// \cond IGNORE_DOXYGEN 36 35 37 /** 36 38 \internal … … 47 49 { } 48 50 #endif 51 52 /// \endcond 49 53 50 54 }}}
Note: See TracChangeset
for help on using the changeset viewer.