X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=getsabundcommand.h;h=7242342cdcdf455d2861f230fc65c039fd00bd6c;hp=d17574f57a8b33e3a0625ae056d604859736e036;hb=b206f634aae1b4ce13978d203247fb64757d5482;hpb=ca9ac1d80c62f57270b0dcd49410ebe08a8aecd6 diff --git a/getsabundcommand.h b/getsabundcommand.h index d17574f..7242342 100644 --- a/getsabundcommand.h +++ b/getsabundcommand.h @@ -24,21 +24,26 @@ public: vector setParameters(); string getCommandName() { return "get.sabund"; } string getCommandCategory() { return "OTU-Based Approaches"; } - string getHelpString(); + string getHelpString(); + string getOutputPattern(string); + string getCitation() { return "http://www.mothur.org/wiki/Get.sabund"; } + string getDescription() { return "creates a sabund file"; } + int execute(); void help() { m->mothurOut(getHelpString()); } private: - string filename, format, inputfile, listfile, rabundfile, outputDir; + string filename, format, inputfile, listfile, rabundfile, outputDir, countfile; ofstream out; - InputData* input; - SAbundVector* sabund; vector outputNames; bool abort, allLines; set labels; //holds labels to be used string label; + + int processList(ofstream& out); + int createRabund(CountTable& ct, ListVector*& list, RAbundVector*& rabund); };