X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=readdistcommand.h;h=afe077d4e0e16c7763dc8304130242d2e0af1d4e;hb=2c97dd48b8e27ee0a6a86c7a082f4c504c3357c6;hp=984b4a78ec40fc5b9d643cd51434ef4255d3e239;hpb=8bc3e5b38c2317a1715f53be22fa96455868c281;p=mothur.git diff --git a/readdistcommand.h b/readdistcommand.h index 984b4a7..afe077d 100644 --- a/readdistcommand.h +++ b/readdistcommand.h @@ -21,23 +21,24 @@ namefile=yourNameFile, cutoff=yourCutoff, precision=yourPrecision). The phylipfi If you do not provide a cutoff value 10.00 is assumed. If you do not provide a precision value then 100 is assumed. */ class NameAssignment; -class GlobalData; - class ReadDistCommand : public Command { public: ReadDistCommand(string); - ReadDistCommand() {} - ~ReadDistCommand(); - vector getRequiredParameters(); - vector getValidParameters(); - vector getRequiredFiles(); - map > getOutputFiles() { return outputTypes; } - int execute(); - void help(); + ReadDistCommand() { abort = true; calledHelp = true; } + ~ReadDistCommand() {} + + vector setParameters() { return outputNames; } //dummy doesn't really do anything + string getCommandName() { return "read.dist"; } + string getCommandCategory() { return "Hidden"; } + string getHelpString() { return "This command is no longer available. You can provide your distance files directly to the downstream commands like cluster."; } + string getCitation() { return "http://www.mothur.org/wiki/Read.dist"; } + string getDescription() { return "read.dist"; } + + int execute(); + void help() { m->mothurOut(getHelpString()); } private: - GlobalData* globaldata; double cutoff; int precision; ReadMatrix* read; @@ -47,7 +48,6 @@ private: string phylipfile, columnfile, namefile, groupfile, outputDir; NameAssignment* nameMap; vector outputNames; - map > outputTypes; bool abort, sim;