Changeset 2895
- Timestamp:
- Dec 10, 2012, 10:38:12 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/Makefile.am
r2894 r2895 39 39 test/averager3.test \ 40 40 test/averager4.test \ 41 test/bam_iterator test/bam_region_iterator \ 41 42 test/codon.test test/commandline.test \ 42 43 test/concept.test \ -
trunk/yat/omic/BamFile.cc
r2883 r2895 32 32 33 33 InBamFile::InBamFile(void) 34 : super_t() //, index_(NULL)34 : super_t(), index_(NULL) 35 35 {} 36 36 37 37 38 38 InBamFile::InBamFile(const std::string& fn) 39 : super_t() //, index_(NULL)39 : super_t(), index_(NULL) 40 40 { 41 41 open(fn); … … 45 45 InBamFile::~InBamFile(void) 46 46 { 47 //bam_index_destroy(index_);47 bam_index_destroy(index_); 48 48 } 49 49 -
trunk/yat/omic/BamReadIterator.cc
r2883 r2895 43 43 { 44 44 actor_ = boost::shared_ptr<Actor>(new IndexActor(bf, tid, start, end)); 45 assert(actor_); 45 46 increment(); 46 47 }
Note: See TracChangeset
for help on using the changeset viewer.