]> git.donarmstrong.com Git - bamtools.git/blobdiff - bamtools_index.h
Merge BamMultiReader and SetRegion into bamtools convert
[bamtools.git] / bamtools_index.h
index 1f9b4c8091af9ec7798fb24152d146215ddf8052..bb6d89353066bd8972734d1ddbaeb2280609f53d 100644 (file)
@@ -3,57 +3,33 @@
 // Marth Lab, Department of Biology, Boston College
 // All rights reserved.
 // ---------------------------------------------------------------------------
-// Last modified: 26 May 2010
+// Last modified: 1 June 2010
 // ---------------------------------------------------------------------------
-// Creates a BAM index (".bai") file for the provided BAM file.
+// Creates a BAM index (".bai") file for the provided BAM file
 // ***************************************************************************
 
 #ifndef BAMTOOLS_INDEX_H
 #define BAMTOOLS_INDEX_H
 
-#include <iostream>
-#include <string>
-
-#include "BamReader.h"
-// #include "GetOpt.h"
-#include "bamtools_getopt.h"
+#include "bamtools_tool.h"
 
 namespace BamTools {
-
-int BamIndexHelp(void) { 
-    std::cerr << std::endl;
-    std::cerr << "usage:\tbamtools index [--nclist] <BAM file>" << std::endl;
-    std::cerr << "\t--nclist\tUse NCList indexing scheme (faster?)\t[default=off] ** JUST HERE AS POSSIBLE SWITCH EXAMPLE FOR NOW **" << std::endl;
-    std::cerr << "\t<BAM file>\tInput BAM file to generate index from\t[req'd]" << std::endl;
-    std::cerr << std::endl;
-    return 0;
-}
-
-int RunBamIndex(int argc, char* argv[]) {
   
-    // else parse command line for args  
-    GetOpt options(argc, argv, 1);
-    
-    std::string inputFilename;
-    options.addRequiredArgument("input", &inputFilename);
-    
-    bool useNCList;
-    options.addSwitch("nclist", &useNCList);
-    
-    if ( !options.parse() ) return BamIndexHelp();
-    
-    // open our BAM reader
-    BamReader reader;
-    reader.Open(inputFilename);
-    
-    // create index for BAM file
-    reader.CreateIndex();
-    
-    // clean & exit
-    reader.Close();
-    return 0;
-}
-
+class IndexTool : public AbstractTool {
+  
+    public:
+        IndexTool(void);
+        ~IndexTool(void);
+  
+    public:
+        int Help(void);
+        int Run(int argc, char* argv[]); 
+        
+    private:
+        struct IndexSettings;
+        IndexSettings* m_settings;
+};
+  
 } // namespace BamTools
 
 #endif // BAMTOOLS_INDEX_H