X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=binsequencecommand.h;h=c93041f348505d7482e9a18d2658d29919eae309;hp=7456a2628f42969f66422d3e194b20508276dcea;hb=050a3ff02473a3d4c0980964e1a9ebe52e55d6b8;hpb=e150b0b0664caec517485ee6d69dcdade6dcae77 diff --git a/binsequencecommand.h b/binsequencecommand.h index 7456a26..c93041f 100644 --- a/binsequencecommand.h +++ b/binsequencecommand.h @@ -16,6 +16,7 @@ #include "listvector.hpp" #include "fastamap.h" #include "groupmap.h" +#include "counttable.h" class BinSeqCommand : public Command { @@ -27,22 +28,24 @@ public: vector setParameters(); string getCommandName() { return "bin.seqs"; } string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getOutputPattern(string); string getCitation() { return "http://www.mothur.org/wiki/Bin.seqs"; } - + string getDescription() { return "maps sequences to otus"; } int execute(); void help() { m->mothurOut(getHelpString()); } private: - + CountTable ct; ListVector* list; InputData* input; FastaMap* fasta; GroupMap* groupMap; bool abort, allLines; set labels; //holds labels to be used - string filename, fastafile, listfile, namesfile, groupfile, label, outputDir; + string filename, fastafile, listfile, namesfile, groupfile, countfile, label, outputDir; ofstream out; ifstream in, inNames; vector outputNames;