X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=createdatabasecommand.h;h=79b5646b864ddf13f59f69c3adb205d5df74fc16;hp=37e3013607f5f19585a39299a7c22b92a7e8cd24;hb=cf9987b67aa49777a4c91c2d21f96e58bf17aa82;hpb=ee8403d4eb5760187d62b42a9cf4272de8fc0ec4 diff --git a/createdatabasecommand.h b/createdatabasecommand.h index 37e3013..79b5646 100644 --- a/createdatabasecommand.h +++ b/createdatabasecommand.h @@ -22,7 +22,9 @@ public: vector setParameters(); string getCommandName() { return "create.database"; } string getCommandCategory() { return "OTU-Based Approaches"; } + string getHelpString(); + string getOutputPattern(string); string getCitation() { return "http://www.mothur.org/wiki/Create.database"; } string getDescription() { return "creates database file that includes, abundances across groups, representative sequences, and taxonomy for each OTU"; } @@ -33,13 +35,15 @@ public: private: bool abort; - string listfile, groupfile, repfastafile, repnamesfile, contaxonomyfile, label, outputDir; + string sharedfile, listfile, groupfile, repfastafile, repnamesfile, contaxonomyfile, label, outputDir, countfile; vector outputNames; vector readFasta(vector&); - vector readTax(vector&); + vector readTax(vector&, vector&); ListVector* getList(); + vector getShared(); + int findIndex(vector&, string); };