X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=countseqscommand.h;h=555d6a74fa36fa034b6d0aafeb5f07bd0c4e7bbc;hb=01f8d2c7d982a6209211f5abbcf2a086fdf60d0a;hp=89549a9ac0b0c74e6cdd18372ac4cdb834b5e8be;hpb=a44542a3c740cf957cff72ac71742f2fe48b0eaf;p=mothur.git diff --git a/countseqscommand.h b/countseqscommand.h index 89549a9..555d6a7 100644 --- a/countseqscommand.h +++ b/countseqscommand.h @@ -23,6 +23,7 @@ public: vector setParameters(); string getCommandName() { return "count.seqs"; } string getCommandCategory() { return "Sequence Processing"; } + string getOutputFileNameTag(string, string); string getHelpString(); 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 +34,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