]> git.donarmstrong.com Git - mothur.git/blobdiff - preclustercommand.h
fixed phylo.diversity
[mothur.git] / preclustercommand.h
index a26fda41cba8e316fd8649604e6934a5960f22f4..de6a5727575a7f35d2605239968a37435faa388f 100644 (file)
@@ -20,8 +20,9 @@ struct seqPNode {
        int numIdentical;
        Sequence seq;
        string names;
+       bool active;
        seqPNode() {}
-       seqPNode(int n, Sequence s, string nm) : numIdentical(n), seq(s), names(nm) {}
+       seqPNode(int n, Sequence s, string nm) : numIdentical(n), seq(s), names(nm), active(1) {}
        ~seqPNode() {}
 };
 /************************************************************/
@@ -38,7 +39,7 @@ private:
        int diffs, length;
        bool abort;
        string fastafile, namefile, outputDir;
-       list<seqPNode> alignSeqs; //maps the number of identical seqs to a sequence
+       vector<seqPNode> alignSeqs; //maps the number of identical seqs to a sequence
        map<string, string> names; //represents the names file first column maps to second column
        map<string, int> sizes;  //this map a seq name to the number of identical seqs in the names file
        map<string, int>::iterator itSize; 
@@ -48,7 +49,7 @@ private:
        void readNameFile();
        //int readNamesFASTA();
        int calcMisMatches(string, string);
-       void printData(ofstream&, ofstream&, seqPNode); //fasta filename, names file name
+       void printData(string, string); //fasta filename, names file name
 };
 
 /************************************************************/