]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/api/BamReader.h
Fixed: typo in BamReader.h
[bamtools.git] / src / api / BamReader.h
index 30c4d5f4de1fa1c415738c54f914f9b7f5dd2314..15b41354d9e2e119e2c1e4e2cc38cd80fd500ecc 100644 (file)
@@ -2,7 +2,7 @@
 // BamReader.h (c) 2009 Derek Barnett, Michael Str�mberg\r
 // Marth Lab, Department of Biology, Boston College\r
 // ---------------------------------------------------------------------------\r
-// Last modified: 10 October 2011 (DB)\r
+// Last modified: 18 November 2012 (DB)\r
 // ---------------------------------------------------------------------------\r
 // Provides read access to BAM files.\r
 // ***************************************************************************\r
@@ -69,7 +69,9 @@ class API_EXPORT BamReader {
         // access header data\r
         // ----------------------\r
 \r
-        // returns SAM header data\r
+        // returns a read-only reference to SAM header data\r
+        const SamHeader& GetConstSamHeader(void) const;\r
+        // returns an editable copy of SAM header data\r
         SamHeader GetHeader(void) const;\r
         // returns SAM header data, as SAM-formatted text\r
         std::string GetHeaderText(void) const;\r
@@ -99,8 +101,6 @@ class API_EXPORT BamReader {
         bool OpenIndex(const std::string& indexFilename);\r
         // sets a custom BamIndex on this reader\r
         void SetIndex(BamIndex* index);\r
-        // changes the caching behavior of the index data\r
-        void SetIndexCacheMode(const BamIndex::IndexCacheMode& mode);\r
 \r
         // ----------------------\r
         // error handling\r