X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=phylotypecommand.h;h=ef8b8f17e37051be4951d6dd662d0db1beb1dbaa;hp=0322daf423ab716022e2146b6d4f352911fed693;hb=1a20e24ee786195ab0e1cccd4f5aede7a88f3f4e;hpb=7a2154809d332281cf4006943a9bd94b8208c837 diff --git a/phylotypecommand.h b/phylotypecommand.h index 0322daf..ef8b8f1 100644 --- a/phylotypecommand.h +++ b/phylotypecommand.h @@ -20,19 +20,34 @@ class PhylotypeCommand : public Command { public: PhylotypeCommand(string); - ~PhylotypeCommand(); - int execute(); - void help(); + PhylotypeCommand(); + ~PhylotypeCommand(){} + + vector setParameters(); + string getCommandName() { return "phylotype"; } + string getCommandCategory() { return "Clustering"; } + + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/Phylotype"; } + string getDescription() { return "cluster your sequences into OTUs based on their classifications"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: bool abort, allLines; - string taxonomyFileName, label; + string taxonomyFileName, label, outputDir, namefile, countfile; set labels; //holds labels to be used int cutoff; + map namemap; + vector outputNames; map currentNodes; map parentNodes; map::iterator itCurrent; + + int readNamesFile(); };