]> git.donarmstrong.com Git - bamtools.git/blob - bamtools_coverage.h
added warning for duplicate @RG tag in header
[bamtools.git] / bamtools_coverage.h
1 // ***************************************************************************
2 // bamtools_coverage.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 coverage statistics for a single BAM file 
9 //
10 // ** Expand to multiple?? 
11 //
12 // ***************************************************************************
13
14 #ifndef BAMTOOLS_COVERAGE_H
15 #define BAMTOOLS_COVERAGE_H
16
17 #include "bamtools_tool.h"
18
19 namespace BamTools {
20   
21 class CoverageTool : public AbstractTool {
22   
23     public:
24         CoverageTool(void);
25         ~CoverageTool(void);
26   
27     public:
28         int Help(void);
29         int Run(int argc, char* argv[]); 
30         
31     private:  
32         struct CoverageSettings;
33         CoverageSettings* m_settings;
34 };
35   
36 } // namespace BamTools
37
38 #endif // BAMTOOLS_COVERAGE_H