intgetSeqs(string, string, string, string, bool); //prints unique sequences in a specific group to a file - group, filename, uchimeFormat=false, tag (/ab= or ;size=), tag2(/ or ;)
intgetCountTable(string, string); //print seqName -> numberRedundantSeqs for a specific group - group, filename
- map<string, string> getAllSeqsMap(){ return allSeqsMap; } //returns map where the key=sequenceName and the value=representativeSequence - helps us remove duplicates after group by group processing
+ map<string, string> getAllSeqsMap();//returns map where the key=sequenceName and the value=representativeSequence - helps us remove duplicates after group by group processing
private:
CountTable countTable;
MothurOut* m;
int numSeqs;
- map<string, string> allSeqsMap;
+ //map<string, string> allSeqsMap;
map<string, vector<Sequence> > seqs; //a vector for each group
map<string, map<string, int> > countTablePerGroup; //countTable for each group
0 comments on commit
13647f8