X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=otuhierarchycommand.h;h=2b9e8e7f042e5f63a8805a427a8c3f8693f6cad9;hb=f3e0de2c55da5c524abb3b404f77cb84aa1ddd34;hp=1cd427f1a7af8442d4747e65662bbf431ccdcbbd;hpb=5a1e62397b91f57d0d3aff635891df04b8999a88;p=mothur.git diff --git a/otuhierarchycommand.h b/otuhierarchycommand.h index 1cd427f..2b9e8e7 100644 --- a/otuhierarchycommand.h +++ b/otuhierarchycommand.h @@ -18,16 +18,31 @@ class OtuHierarchyCommand : public Command { public: OtuHierarchyCommand(string); - ~OtuHierarchyCommand(); - int execute(); - void help(); + OtuHierarchyCommand(); + ~OtuHierarchyCommand(){} + + vector setParameters(); + string getCommandName() { return "otu.hierarchy"; } + string getCommandCategory() { return "OTU-Based Approaches"; } + + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/Otu.hierarchy"; } + string getDescription() { return "relates OTUs at different distances"; } + + + int execute(); + void help() { m->mothurOut(getHelpString()); } + private: bool abort; - set labels; //holds labels to be used - string label, listFile, outputDir, output; + set mylabels; //holds labels to be used + string label, listFile, outputDir, output, list1Label, list2Label; + vector outputNames; - vector getListVectors(); + vector< vector > getListVectors(); + vector< vector > getListVector(string, string&); };