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