]> git.donarmstrong.com Git - mothur.git/blobdiff - getsabundcommand.h
fixes while testing 1.33.0
[mothur.git] / getsabundcommand.h
index dcda3aafd7ff5a6c53cd2534a342aabba4a42215..7242342cdcdf455d2861f230fc65c039fd00bd6c 100644 (file)
 
 #include "command.hpp"
 #include "inputdata.h"
-#include "readotu.h"
 #include "sabundvector.hpp"
 
-class GlobalData;
-
 class GetSAbundCommand : public Command {
 public:
        GetSAbundCommand(string);
-       ~GetSAbundCommand();
-       int execute();
-       void help();
+       GetSAbundCommand();
+       ~GetSAbundCommand() {}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "get.sabund";                          }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       
+       string getHelpString(); 
+    string getOutputPattern(string);   
+       string getCitation() { return "http://www.mothur.org/wiki/Get.sabund"; }
+       string getDescription()         { return "creates a sabund file"; }
+
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
-       GlobalData* globaldata;
-       string filename, format;
+       string filename, format, inputfile, listfile, rabundfile, outputDir, countfile;
        ofstream out;
-       ReadOTUFile* read;
-       OrderVector* order;
-       OrderVector* lastOrder;
-       InputData* input;
-       SAbundVector* sabund;
+       vector<string> outputNames;
 
        bool abort, allLines;
-       set<int> lines; //hold lines to be used
        set<string> labels; //holds labels to be used
-       string line, label;
+       string label;
+    
+    int processList(ofstream& out);
+    int createRabund(CountTable& ct, ListVector*& list, RAbundVector*& rabund);
 
 };