]> git.donarmstrong.com Git - bamtools.git/blob - bamtools_convert.h
further cleanup of duplicate @RG tag warning reporting
[bamtools.git] / bamtools_convert.h
1 // ***************************************************************************
2 // bamtools_convert.h (c) 2010 Derek Barnett, Erik Garrison
3 // Marth Lab, Department of Biology, Boston College
4 // All rights reserved.
5 // ---------------------------------------------------------------------------
6 // Last modified: 2 June 2010
7 // ---------------------------------------------------------------------------
8 // Converts between BAM and a number of other formats
9 // ***************************************************************************
10
11 #ifndef BAMTOOLS_CONVERT_H
12 #define BAMTOOLS_CONVERT_H
13
14 #include "bamtools_tool.h"
15
16 namespace BamTools { 
17   
18 class ConvertTool : public AbstractTool {
19   
20     public:
21         ConvertTool(void);
22         ~ConvertTool(void);
23
24     public:
25         int Help(void);
26         int Run(int argc, char* argv[]); 
27         
28     private: 
29         struct ConvertSettings;
30         ConvertSettings* m_settings;
31 };
32   
33 } // namespace BamTools
34
35 #endif // BAMTOOLS_CONVERT_H