X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=countseqscommand.h;h=6ba36b1a0264e20efe7bd251bc8d505cdf30cb87;hb=af0a94ea8f02421b2b73e77e68753a2b4c37768e;hp=89549a9ac0b0c74e6cdd18372ac4cdb834b5e8be;hpb=0caf3fbabaa3ece404f8ce77f4c883dc5b1bf1dc;p=mothur.git diff --git a/countseqscommand.h b/countseqscommand.h index 89549a9..6ba36b1 100644 --- a/countseqscommand.h +++ b/countseqscommand.h @@ -23,7 +23,9 @@ public: vector setParameters(); string getCommandName() { return "count.seqs"; } string getCommandCategory() { return "Sequence Processing"; } + string getHelpString(); + string getOutputPattern(string); string getCitation() { return "http://www.mothur.org/wiki/Count.seqs"; } string getDescription() { return "counts the number of sequences represented by each unique sequence in a namesfile"; } @@ -33,8 +35,15 @@ public: private: string namefile, groupfile, outputDir, groups; - bool abort; - vector Groups; + bool abort, large; + vector Groups, outputNames; + int processors; + + int processSmall(string); + int processLarge(string); + map processNameFile(string); + map getGroupNames(string, set&); + }; #endif