- Timestamp:
- Dec 4, 2012, 3:17:22 AM (11 years ago)
- Location:
- trunk/yat/omic
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/omic/BamFile.h
r2883 r2884 38 38 /** 39 39 Base class for bam files 40 41 \since New in yat 0.10 40 42 */ 41 43 template<typename Derived> … … 91 93 /** 92 94 This class supports reading from a bam file. 95 96 \since New in yat 0.10 93 97 */ 94 98 class InBamFile : public BamFile<InBamFile> … … 158 162 /** 159 163 This class supports writing to a bam file. 164 165 \since New in yat 0.10 160 166 */ 161 167 class OutBamFile : public BamFile<OutBamFile> -
trunk/yat/omic/BamHeader.h
r2883 r2884 29 29 30 30 Class is typically created within InBamFile 31 32 \since New in yat 0.10 31 33 */ 32 34 class BamHeader -
trunk/yat/omic/BamRead.h
r2883 r2884 67 67 68 68 \see samtools 69 70 \since New in yat 0.10 69 71 */ 70 72 class BamRead … … 226 228 \return \c true if read is soft clipped, either left_soft_clipped 227 229 or right_soft_clipped. 230 231 \since New in yat 0.10 228 232 */ 229 233 bool soft_clipped(const BamRead& bam); … … 232 236 If read is soft clipped on left side, return how many bases are 233 237 clipped, otherwise return 0. 238 239 \since New in yat 0.10 234 240 */ 235 241 uint32_t left_soft_clipped(const BamRead& bam); … … 238 244 If read is soft clipped on right side, return how many bases are 239 245 clipped, otherwise return 0. 246 247 \since New in yat 0.10 240 248 */ 241 249 uint32_t right_soft_clipped(const BamRead& bam); … … 245 253 246 254 \see BamRead::name() 255 256 \since New in yat 0.10 247 257 */ 248 258 bool same_query_name(const BamRead& lhs, const BamRead& rhs); … … 253 263 254 264 \see BamRead 265 266 \since New in yat 0.10 255 267 */ 256 268 struct BamLessPos … … 272 284 273 285 \see BamRead 286 287 \since New in yat 0.10 274 288 */ 275 289 struct BamLessEnd -
trunk/yat/omic/BamReadIterator.h
r2883 r2884 50 50 51 51 \see InBamFile 52 53 \since New in yat 0.10 52 54 */ 53 55 class BamReadIterator -
trunk/yat/omic/BamWriteIterator.h
r2883 r2884 32 32 /** 33 33 Functor taking a BamRead and writing to an OutBamFile 34 35 \since New in yat 0.10 34 36 */ 35 37 class BamWriter : std::unary_function<const BamRead&, void> … … 73 75 \see OutBamFile 74 76 \see std::ostream_iterator 77 78 \since New in yat 0.10 75 79 */ 76 80 class BamWriteIterator
Note: See TracChangeset
for help on using the changeset viewer.