X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=nmdscommand.h;h=861e8eaf95eb79a02c4e918a732f13c19f3ce845;hb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6;hp=7979c67a3eb9d043c8e19ef2429a9e5ffdff57b0;hpb=41f654a317afba7f4dba3fcd0a6557773528845a;p=mothur.git diff --git a/nmdscommand.h b/nmdscommand.h index 7979c67..861e8ea 100644 --- a/nmdscommand.h +++ b/nmdscommand.h @@ -32,13 +32,15 @@ class NMDSCommand : public Command { public: NMDSCommand(string); NMDSCommand(); - ~NMDSCommand(); - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help(); + ~NMDSCommand(){} + + vector setParameters(); + string getCommandName() { return "nmds"; } + string getCommandCategory() { return "Hypothesis Testing"; } + string getHelpString(); + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: @@ -47,7 +49,6 @@ private: int maxdim, mindim, maxIters, iters; double epsilon; vector outputNames; - map > outputTypes; LinearAlgebra linearCalc; vector< vector > nmdsCalc(vector< vector >&, vector< vector >&, double&);