X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=consensusseqscommand.h;h=e0c97150bfb0bc3e5baafcea911c4ba1c6c60dcb;hb=159fd324dfecacb6617669246d85c787ae67f630;hp=1459b43d25bd54b525459721b5de55a5a1d6d9f6;hpb=49d2b7459c5027557564b21e9487dadafbbbdc96;p=mothur.git diff --git a/consensusseqscommand.h b/consensusseqscommand.h index 1459b43..e0c9715 100644 --- a/consensusseqscommand.h +++ b/consensusseqscommand.h @@ -13,6 +13,7 @@ #include "command.hpp" #include "listvector.hpp" +#include "counttable.h" class ConsensusSeqsCommand : public Command { public: @@ -34,19 +35,20 @@ public: private: + CountTable ct; bool abort, allLines; - string fastafile, listfile, namefile, label, outputDir; + string fastafile, listfile, namefile, countfile, label, outputDir; set labels; vector outputNames; map fastaMap; map nameMap; - map nameFileMap; - int cutoff; + map nameFileMap; + int cutoff, seqLength; int readFasta(); int readNames(); int processList(ListVector*&); - string getConsSeq(string, ofstream&, string&, int); + string getConsSeq(string, ofstream&, int); char getBase(vector, int); };