Changeset 2895 for trunk/yat/omic/BamFile.cc
- Timestamp:
- Dec 10, 2012, 10:38:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.