]> git.donarmstrong.com Git - mothur.git/blobdiff - getseqscommand.h
fixed segfault in unifrac with subsample. in progress of implementing a version of...
[mothur.git] / getseqscommand.h
index 4f4c809e51e7f9308ae4f372bdd2195eb964f6c3..4561d28614c62686c42e29a9747b84d853537fd0 100644 (file)
@@ -17,14 +17,24 @@ class GetSeqsCommand : public Command {
        public:
        
                GetSeqsCommand(string);
-               ~GetSeqsCommand(){};
-               int execute();
-               void help();    
-               
+               GetSeqsCommand();
+               ~GetSeqsCommand(){}
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "get.seqs";                            }
+               string getCommandCategory()             { return "Sequence Processing";         }
+               string getHelpString(); 
+               string getCitation() { return "http://www.mothur.org/wiki/Get.seqs"; }
+               string getDescription()         { return "gets sequences from a list, fasta, name, group, alignreport, quality or taxonomy file"; }
+
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }  
+       
+       
        private:
                set<string> names;
                vector<string> outputNames;
-               string accnosfile, fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir;
+               string accnosfile, accnosfile2, fastafile, namefile, groupfile, alignfile, listfile, taxfile, qualfile, outputDir;
                bool abort, dups;
                
                int readFasta();
@@ -34,6 +44,8 @@ class GetSeqsCommand : public Command {
                int readAccnos();
                int readList();
                int readTax();
+               int readQual();
+               int compareAccnos();
                
 };