Changeset 3317
- Timestamp:
- Sep 19, 2014, 7:41:50 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r3314 r3317 71 71 test/ostream_iterator.test \ 72 72 test/pca.test \ 73 test/pileup.test \ 73 74 test/queue.test test/queue2.test \ 74 75 test/range.test test/regression.test test/rnd.test \ … … 136 137 137 138 # dependencies for lazycheck 139 test/bam.log: test/data/foo.sorted.bam 140 test/bam_header.log: test/data/foo.sorted.bam 141 test/bam_header2.log: test/data/foo.sorted.bam 142 test/bam_iterator.log: test/data/foo.sorted.bam 143 test/bam_pair_analyse.log: test/data/foo.sorted.bam 144 test/bam_pair_iterator.log: test/data/foo.sorted.bam 145 test/bam_read_filter.log: test/data/foo.sorted.bam 146 test/bam_region_iterator.log: test/data/foo.sorted.bam 138 147 test/cmd_test.log: test/help.test $(shell_test_deps) 139 148 test/help_test.log: test/help.test $(shell_test_deps) 149 test/pileup.log: test/data/foo.sorted.bam 140 150 test/static_test.log: $(srcdir)/m4/yat.m4 $(shell_test_deps) 141 151 test/yat_config_test.log: build_support/yat-config \ -
trunk/yat/omic/Makefile.am
r3175 r3317 50 50 nobase_include_HEADERS += $(srcdir)/yat/omic/GFF2.h 51 51 nobase_include_HEADERS += $(srcdir)/yat/omic/GFF3.h 52 nobase_include_HEADERS += $(srcdir)/yat/omic/Pileup.h -
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.