BamMultiReader.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef BAMMULTIREADER_H
00011 #define BAMMULTIREADER_H
00012
00013 #include "api/api_global.h"
00014 #include "api/BamReader.h"
00015 #include <map>
00016 #include <sstream>
00017 #include <string>
00018 #include <utility>
00019
00020 namespace BamTools {
00021
00022 namespace Internal {
00023 class BamMultiReaderPrivate;
00024 }
00025
00026 class API_EXPORT BamMultiReader {
00027
00028
00029 public:
00030 BamMultiReader(void);
00031 ~BamMultiReader(void);
00032
00033
00034 public:
00035
00036
00037
00038
00039
00040
00041 bool Close(void);
00042
00043 bool CloseFile(const std::string& filename);
00044
00045 const std::vector<std::string> Filenames(void) const;
00046
00047 bool HasOpenReaders(void) const;
00048
00049 bool Jump(int refID, int position = 0);
00050
00051 bool Open(const std::vector<std::string>& filenames);
00052
00053 bool OpenFile(const std::string& filename);
00054
00055 bool Rewind(void);
00056
00057 bool SetRegion(const BamRegion& region);
00058
00059 bool SetRegion(const int& leftRefID,
00060 const int& leftPosition,
00061 const int& rightRefID,
00062 const int& rightPosition);
00063
00064
00065
00066
00067
00068
00069 bool GetNextAlignment(BamAlignment& alignment);
00070
00071 bool GetNextAlignmentCore(BamAlignment& alignment);
00072
00073
00074
00075
00076
00077
00078 SamHeader GetHeader(void) const;
00079
00080 std::string GetHeaderText(void) const;
00081
00082 int GetReferenceCount(void) const;
00083
00084 const BamTools::RefVector GetReferenceData(void) const;
00085
00086 int GetReferenceID(const std::string& refName) const;
00087
00088
00089
00090
00091
00092
00093 bool CreateIndexes(const BamIndex::IndexType& type = BamIndex::STANDARD);
00094
00095 bool HasIndexes(void) const;
00096
00097 bool LocateIndexes(const BamIndex::IndexType& preferredType = BamIndex::STANDARD);
00098
00099 bool OpenIndexes(const std::vector<std::string>& indexFilenames);
00100
00101
00102
00103
00104
00105
00106 std::string GetErrorString(void) const;
00107
00108
00109 private:
00110 Internal::BamMultiReaderPrivate* d;
00111 };
00112
00113 }
00114
00115 #endif // BAMMULTIREADER_H