]> git.donarmstrong.com Git - mothur.git/blobdiff - getlineagecommand.h
added count file to chimera.uchime. found issue with uchime program that indicated...
[mothur.git] / getlineagecommand.h
index 0d07ac6193f37807a25247df864f762e67369d58..0ab042bac365b64840e32212a6705f62d46d5ff1 100644 (file)
@@ -17,13 +17,25 @@ class GetLineageCommand : public Command {
        public:
        
                GetLineageCommand(string);
-               ~GetLineageCommand(){};
-               int execute();
-               void help();    
-               
+               GetLineageCommand();
+               ~GetLineageCommand(){}
+       
+               vector<string> setParameters();
+               string getCommandName()                 { return "get.lineage";                         }
+               string getCommandCategory()             { return "Phylotype Analysis";          }
+               string getOutputFileNameTag(string, string);
+       string getHelpString(); 
+               string getCitation() { return "http://www.mothur.org/wiki/Get.lineage"; }
+               string getDescription()         { return "gets sequences from a list, fasta, name, group, alignreport or taxonomy file from a given taxonomy or set of taxonomies"; }
+
+       
+               int execute(); 
+               void help() { m->mothurOut(getHelpString()); }  
+       
+       
        private:
                set<string> names;
-               vector<string> outputNames;
+               vector<string> outputNames, listOfTaxons;
                string fastafile, namefile, groupfile, alignfile, listfile, taxfile, outputDir, taxons;
                bool abort, dups;
                
@@ -33,7 +45,7 @@ class GetLineageCommand : public Command {
                int readAlign();
                int readList();
                int readTax();  
-               string removeConfidences(string);
+               vector< map<string, float> > getTaxons(string);
 };
 
 #endif