]> git.donarmstrong.com Git - bamtools.git/blob - src/api/BamIndex.h
e967c09a5d7589514add01faf11274953e7fc1ea
[bamtools.git] / src / api / BamIndex.h
1 // ***************************************************************************
2 // BamIndex.h (c) 2009 Derek Barnett
3 // Marth Lab, Department of Biology, Boston College
4 // ---------------------------------------------------------------------------
5 // Last modified: 9 October 2011 (DB)
6 // ---------------------------------------------------------------------------
7 // Provides basic BAM index interface
8 // ***************************************************************************
9
10 #ifndef BAM_INDEX_H
11 #define BAM_INDEX_H
12
13 #include <api/api_global.h>
14 #include <api/BamAux.h>
15 #include <string>
16
17 namespace BamTools {
18
19 namespace Internal {
20     class BamReaderPrivate;
21 } // namespace Internal
22
23 /*! \class BamTools::BamIndex
24     \brief Provides methods for generating & loading BAM index files.
25
26     This class straddles the line between public API and internal
27     implementation detail. Most client code should never have to use this
28     class directly.
29
30     It is exposed to the public API to allow advanced users to implement
31     their own custom indexing schemes.
32 */
33
34 class API_EXPORT BamIndex {
35
36     // enums
37     public:
38         // specify index-caching behavior
39         enum IndexCacheMode { FullIndexCaching = 0 // store entire index file contents in memory
40                             , LimitedIndexCaching  // store only index data for current reference
41                             , NoIndexCaching       // do not store any index data between jumps
42                             };
43
44         // list of supported BamIndex types
45         enum IndexType { BAMTOOLS = 0
46                        , STANDARD
47                        };
48   
49     // ctor & dtor
50     public:
51         BamIndex(Internal::BamReaderPrivate* reader) : m_reader(reader) { }
52         virtual ~BamIndex(void) { }
53         
54     // index interface
55     public:
56         // builds index from associated BAM file & writes out to index file
57         virtual bool Create(void) =0;
58
59         // returns a human-readable description of the last error encountered
60         std::string GetErrorString(void) { return m_errorString; }
61
62         // returns whether reference has alignments or no
63         virtual bool HasAlignments(const int& referenceID) const =0;
64
65         // attempts to use index data to jump to @region, returns success/fail
66         // a "successful" jump indicates no error, but not whether this region has data
67         //   * thus, the method sets a flag to indicate whether there are alignments
68         //     available after the jump position
69         virtual bool Jump(const BamTools::BamRegion& region, bool* hasAlignmentsInRegion) =0;
70
71         // loads existing data from file into memory
72         virtual bool Load(const std::string& filename) =0;
73
74         // change the index caching behavior
75         virtual void SetCacheMode(const BamIndex::IndexCacheMode& mode) =0;
76
77     //! \cond
78
79     // internal methods
80     protected:
81         void SetErrorString(const std::string& where, const std::string& what) const {
82             m_errorString = where + ": " + what;
83         }
84
85     // data members
86     protected:
87         Internal::BamReaderPrivate* m_reader; // copy, not owned
88         mutable std::string m_errorString;
89
90     //! \endcond
91 };
92
93 } // namespace BamTools
94
95 #endif // BAM_INDEX_H