X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=nmdscommand.h;h=c05c9fe36cfd1d2ecbf545451d753fe25b946968;hb=36a6b02cf7f09d2bc34376b588944a9ca73429c5;hp=7979c67a3eb9d043c8e19ef2429a9e5ffdff57b0;hpb=41f654a317afba7f4dba3fcd0a6557773528845a;p=mothur.git diff --git a/nmdscommand.h b/nmdscommand.h index 7979c67..c05c9fe 100644 --- a/nmdscommand.h +++ b/nmdscommand.h @@ -32,13 +32,17 @@ 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(); + string getCitation() { return "Borg, Groenen (1997). Non-metric multidimensional scaling function using the majorization algorithm, in Modern Multidimensional Scaling. Ed. T.F. Cox and M.A.A. Cox. Chapman and Hall. \nhttp://www.mothur.org/wiki/Nmds"; } + string getDescription() { return "nmds"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: @@ -47,7 +51,6 @@ private: int maxdim, mindim, maxIters, iters; double epsilon; vector outputNames; - map > outputTypes; LinearAlgebra linearCalc; vector< vector > nmdsCalc(vector< vector >&, vector< vector >&, double&);