]> git.donarmstrong.com Git - mothur.git/blobdiff - getseqscommand.h
done testing 1.14.0
[mothur.git] / getseqscommand.h
index 24f3968786784965e343f88aef300cad80c54eb4..ea93b5a1c4e0427cc43157a5d77f995bb3f2308b 100644 (file)
@@ -16,22 +16,30 @@ class GetSeqsCommand : public Command {
        
        public:
        
-               GetSeqsCommand(string); 
+               GetSeqsCommand(string);
+               GetSeqsCommand();
                ~GetSeqsCommand(){};
+               vector<string> getRequiredParameters();
+               vector<string> getValidParameters();
+               vector<string> getRequiredFiles();
+               map<string, vector<string> > getOutputFiles() { return outputTypes; }
                int execute();
                void help();    
                
        private:
                set<string> names;
-               string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, outputDir;
-               bool abort;
+               vector<string> outputNames;
+               string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir;
+               bool abort, dups;
+               map<string, vector<string> > outputTypes;
                
-               void readFasta();
-               void readName();
-               void readGroup();
-               void readAlign();
-               void readAccnos();
-               void readList();
+               int readFasta();
+               int readName();
+               int readGroup();
+               int readAlign();
+               int readAccnos();
+               int readList();
+               int readTax();
                
 };