]> git.donarmstrong.com Git - mothur.git/blobdiff - countseqscommand.h
added flag to count table read so that commands that don't require the group info...
[mothur.git] / countseqscommand.h
index 89549a9ac0b0c74e6cdd18372ac4cdb834b5e8be..6ba36b1a0264e20efe7bd251bc8d505cdf30cb87 100644 (file)
@@ -23,7 +23,9 @@ public:
        vector<string> 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<string> Groups;
+       bool abort, large;
+       vector<string> Groups, outputNames;
+    int processors;
+    
+    int processSmall(string);
+    int processLarge(string);
+    map<int, string> processNameFile(string);
+    map<int, string> getGroupNames(string, set<string>&);
+    
 };
 
 #endif