]> git.donarmstrong.com Git - mothur.git/blobdiff - listseqscommand.h
changes while setting up test files
[mothur.git] / listseqscommand.h
index 391ec9a46b9f09671f79fbc0f895730338570d4c..bd7beae73360da9453911e7d5b755135a00f4d54 100644 (file)
@@ -16,14 +16,22 @@ class ListSeqsCommand : public Command {
        
        public:
        
-               ListSeqsCommand(string);        
-               ~ListSeqsCommand(){};
-               int execute();
-               void help();    
-               
+               ListSeqsCommand(string);
+               ListSeqsCommand();      
+               ~ListSeqsCommand(){}
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "get.seqs";                            }
+               string getCommandCategory()             { return "Sequence Processing";         }
+               string getHelpString(); 
+       
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }  
+       
+       
        private:
-               vector<string> names;
-               string fastafile, namefile, groupfile, alignfile, inputFileName, outputDir, listfile;
+               vector<string> names, outputNames;
+               string fastafile, namefile, groupfile, alignfile, inputFileName, outputDir, listfile, taxfile;
                bool abort;
                
                int readFasta();
@@ -31,6 +39,7 @@ class ListSeqsCommand : public Command {
                int readGroup();
                int readAlign();
                int readList();
+               int readTax();
                
 };