]> git.donarmstrong.com Git - bamtools.git/blob - bamtools_header.h
further cleanup of duplicate @RG tag warning reporting
[bamtools.git] / bamtools_header.h
1 // ***************************************************************************
2 // bamtools_header.h (c) 2010 Derek Barnett, Erik Garrison
3 // Marth Lab, Department of Biology, Boston College
4 // All rights reserved.
5 // ---------------------------------------------------------------------------
6 // Last modified: 1 June 2010
7 // ---------------------------------------------------------------------------
8 // Prints the SAM-style header from a single BAM file ( or merged header from
9 // multiple BAM files) to stdout
10 // ***************************************************************************
11
12 #ifndef BAMTOOLS_HEADER_H
13 #define BAMTOOLS_HEADER_H
14
15 #include "bamtools_tool.h"
16
17 namespace BamTools {
18   
19 class HeaderTool : public AbstractTool {
20   
21     public:
22         HeaderTool(void);
23         ~HeaderTool(void);
24   
25     public:
26         int Help(void);
27         int Run(int argc, char* argv[]); 
28         
29     private:
30         struct HeaderSettings;
31         HeaderSettings* m_settings;
32 };
33   
34 } // namespace BamTools
35
36 #endif // BAMTOOLS_HEADER_H