Changeset 3317 for trunk/yat/omic/Pileup.h
- Timestamp:
- Sep 19, 2014, 7:41:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/omic/Pileup.h
r3310 r3317 33 33 namespace omic { 34 34 35 /** 36 \since new in yat 0.13 37 */ 35 38 template<typename Iterator> 36 39 class Pileup … … 55 58 const yat::omic::BamRead& bam(void) const { return bam_; } 56 59 60 /** 61 \return cigar element at current position 62 */ 57 63 uint32_t cigar(void) const 58 64 { … … 102 108 } 103 109 110 /** 111 \return index of base at this position 112 */ 104 113 size_t qpos(void) const { return qpos_; } 105 114 private: … … 118 127 }; 119 128 120 // FIXME change to a filter iterator that ignores end_of_sequence entries 129 /** 130 \brief Const iterator that can be used to iterate over reads at 131 current position 132 */ 121 133 typedef typename std::deque<Entry>::const_iterator const_iterator; 122 134 … … 147 159 148 160 /** 161 \brief step to next position with coverage 149 162 */ 150 163 void increment(void); … … 177 190 178 191 192 /** 193 \relates Pileup 194 195 \since new in yat 0.13 196 */ 179 197 template<typename Iterator> 180 198 Pileup<Iterator> make_pileup(Iterator first, Iterator last)
Note: See TracChangeset
for help on using the changeset viewer.