]> git.donarmstrong.com Git - bamtools.git/blob - src/toolkit/bamtools_sort.h
0241b0257da633e7df54abc75a918b56c226f3c1
[bamtools.git] / src / toolkit / bamtools_sort.h
1 // ***************************************************************************
2 // bamtools_sort.h (c) 2010 Derek Barnett, Erik Garrison
3 // Marth Lab, Department of Biology, Boston College
4 // All rights reserved.
5 // ---------------------------------------------------------------------------
6 // Last modified: 21 June 2010 (DB)
7 // ---------------------------------------------------------------------------
8 // Sorts a BAM file.
9 // ***************************************************************************
10
11 #ifndef BAMTOOLS_SORT_H
12 #define BAMTOOLS_SORT_H
13
14 #include "bamtools_tool.h"
15
16 namespace BamTools {
17   
18 class SortTool : public AbstractTool {
19   
20     public:
21         SortTool(void);
22         ~SortTool(void);
23   
24     public:
25         int Help(void);
26         int Run(int argc, char* argv[]); 
27         
28     private:
29         struct SortSettings;
30         SortSettings* m_settings;
31         
32         struct SortToolPrivate;
33         SortToolPrivate* m_impl;
34 };
35   
36 } // namespace BamTools
37
38 #endif // BAMTOOLS_SORT_H