X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=countseqscommand.h;h=b4170a8867897b96e13f7483f6053b960f7629b4;hb=c48d91112209b841444923670dca5454da0e2a4d;hp=89549a9ac0b0c74e6cdd18372ac4cdb834b5e8be;hpb=a44542a3c740cf957cff72ac71742f2fe48b0eaf;p=mothur.git diff --git a/countseqscommand.h b/countseqscommand.h index 89549a9..b4170a8 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,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