Changeset 2962
- Timestamp:
- Jan 21, 2013, 2:38:20 AM (10 years ago)
- Location:
- branches/0.10-stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10-stable/NEWS
r2961 r2962 6 6 7 7 version 0.10.2 (released NOT YET) 8 - BamRead::mtid(void) is now implemented (see bug #743) 8 9 9 10 A complete list of closed tickets can be found here [[br]] -
branches/0.10-stable/test/bam_iterator.cc
r2929 r2962 76 76 if (lhs.pos() != rhs.pos()) 77 77 return false; 78 if (lhs.mtid() != rhs.mtid()) 79 return false; 80 if (lhs.mpos() != rhs.mpos()) 81 return false; 78 82 if (lhs.core().bin != rhs.core().bin) 79 83 return false; -
branches/0.10-stable/yat/omic/BamRead.cc
r2928 r2962 185 185 186 186 187 int32_t BamRead::mtid(void) const 188 { 189 assert(bam_); 190 return bam_->core.mtid; 191 } 192 187 193 188 194 int32_t BamRead::mpos(void) const
Note: See TracChangeset
for help on using the changeset viewer.