X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=countseqscommand.h;h=b4170a8867897b96e13f7483f6053b960f7629b4;hb=67ea6ccd74dbd64828d31b952808255f206364ff;hp=54982c11939e82fae8de341f74c1aa3a01e4f609;hpb=49d2b7459c5027557564b21e9487dadafbbbdc96;p=mothur.git diff --git a/countseqscommand.h b/countseqscommand.h index 54982c1..b4170a8 100644 --- a/countseqscommand.h +++ b/countseqscommand.h @@ -23,8 +23,9 @@ public: vector setParameters(); string getCommandName() { return "count.seqs"; } string getCommandCategory() { return "Sequence Processing"; } - string getOutputFileNameTag(string, string); + 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"; } @@ -34,8 +35,14 @@ public: private: string namefile, groupfile, outputDir, groups; - bool abort; - vector Groups; + bool abort, large; + vector Groups, outputNames; + + int processSmall(string); + int processLarge(string); + map processNameFile(string); + map getGroupNames(string, set&); + }; #endif