]> git.donarmstrong.com Git - mothur.git/blobdiff - parselistscommand.h
added SequenceCountParser class to parse the count table by group. added count parame...
[mothur.git] / parselistscommand.h
index c765bcdd86c34c89b688685969e89d55928809f6..1faeaeb9f31f13ce0b3a5e4f1fbbe1f524ac6501 100644 (file)
 class ParseListCommand : public Command {
        
 public:
-       ParseListCommand(string);       
-       ~ParseListCommand();
-       int execute();  
-       void help();
+       ParseListCommand(string);
+       ParseListCommand();     
+       ~ParseListCommand() {}
+       
+       vector<string> setParameters();
+       string getCommandName()                 { return "parse.list";                          }
+       string getCommandCategory()             { return "OTU-Based Approaches";        }
+       string getOutputFileNameTag(string, string);
+       string getHelpString(); 
+       string getCitation() { return "http://www.mothur.org/wiki/Parse.list"; }
+       string getDescription()         { return "parses a list file by group"; }
+       
+       int execute(); 
+       void help() { m->mothurOut(getHelpString()); }  
        
 private:
        int parse(ListVector*);
@@ -35,6 +45,7 @@ private:
        string outputDir, listfile, groupfile, label;
        set<string> labels;
        bool abort, allLines;
+       vector<string> outputNames;
        
        map<string, ofstream*> filehandles;
        map<string, ofstream*>::iterator it3;