Changeset 2910
- Timestamp:
- Dec 17, 2012, 3:31:13 AM (10 years ago)
- Location:
- trunk/yat/omic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/omic/BamRead.h
r2887 r2910 22 22 #include <bam.h> 23 23 24 #include <boost/move/move.hpp> 25 24 26 #include <functional> 25 27 #include <string> … … 284 286 { 285 287 /** 286 \return true if lhs tid is less than rhs tid; or if chromomes288 \return true if lhs tid is less than rhs tid; or tid 287 289 are equal and lhs pos is smaller than rhs pos. 288 290 289 \see Bam ::tid() Bam::pos()291 \see BamRead::tid() and BamRead::pos() 290 292 */ 291 293 bool operator()(const BamRead& lhs, const BamRead& rhs) const; … … 305 307 { 306 308 /** 307 \return true if lhs tid is less than rhs tid; or if chromomes309 \return true if lhs tid is less than rhs tid; or tid 308 310 are equal and lhs end is smaller than rhs end. 309 311 310 \see Bam ::tid() Bam::pos()312 \see BamRead::tid() and BamRead::end() 311 313 */ 312 314 bool operator()(const BamRead& lhs, const BamRead& rhs) const; -
trunk/yat/omic/BamWriteIterator.h
r2884 r2910 31 31 32 32 /** 33 Functor taking a BamRead and writing to an OutBamFile 33 Functor taking a BamRead and writing to an OutBamFile. Class is 34 primarily used by BamWriteIterator. 34 35 35 36 \since New in yat 0.10 … … 73 74 right hand side to associated OutBamFile. 74 75 75 \see OutBamFile 76 \see std::ostream_iterator 76 \see OutBamFile and 77 <a href="http://www.sgi.com/tech/stl/ostream_iterator.html"> 78 std::ostream_iterator</a> 77 79 78 80 \since New in yat 0.10
Note: See TracChangeset
for help on using the changeset viewer.