6
|
1 // ***************************************************************************
|
|
2 // BamWriter_p.h (c) 2010 Derek Barnett
|
|
3 // Marth Lab, Department of Biology, Boston College
|
|
4 // All rights reserved.
|
|
5 // ---------------------------------------------------------------------------
|
|
6 // Last modified: 19 November 2010 (DB)
|
|
7 // ---------------------------------------------------------------------------
|
|
8 // Provides the basic functionality for producing BAM files
|
|
9 // ***************************************************************************
|
|
10
|
|
11 #ifndef BAMWRITER_P_H
|
|
12 #define BAMWRITER_P_H
|
|
13
|
|
14 // -------------
|
|
15 // W A R N I N G
|
|
16 // -------------
|
|
17 //
|
|
18 // This file is not part of the BamTools API. It exists purely as an
|
|
19 // implementation detail. This header file may change from version to
|
|
20 // version without notice, or even be removed.
|
|
21 //
|
|
22 // We mean it.
|
|
23
|
|
24 #include <BamAux.h>
|
|
25 #include <BGZF.h>
|
|
26 #include <string>
|
|
27 #include <vector>
|
|
28
|
|
29 namespace BamTools {
|
|
30 namespace Internal {
|
|
31
|
|
32 class BamWriterPrivate {
|
|
33
|
|
34 // ctor & dtor
|
|
35 public:
|
|
36 BamWriterPrivate(void);
|
|
37 ~BamWriterPrivate(void);
|
|
38
|
|
39 // "public" interface to BamWriter
|
|
40 public:
|
|
41 void Close(void);
|
|
42 bool Open(const std::string& filename,
|
|
43 const std::string& samHeader,
|
|
44 const BamTools::RefVector& referenceSequences,
|
|
45 bool isWriteUncompressed);
|
|
46 void SaveAlignment(const BamAlignment& al);
|
|
47
|
|
48 // internal methods
|
|
49 public:
|
|
50 const unsigned int CalculateMinimumBin(const int begin, int end) const;
|
|
51 void CreatePackedCigar(const std::vector<BamTools::CigarOp>& cigarOperations, std::string& packedCigar);
|
|
52 void EncodeQuerySequence(const std::string& query, std::string& encodedQuery);
|
|
53
|
|
54 // data members
|
|
55 public:
|
|
56 BgzfData mBGZF;
|
|
57 bool IsBigEndian;
|
|
58 };
|
|
59
|
|
60 } // namespace Internal
|
|
61 } // namespace BamTools
|
|
62
|
|
63 #endif // BAMWRITER_P_H
|