]> git.donarmstrong.com Git - mothur.git/blobdiff - suffixtree.hpp
added otu.association command. added calcSpearman, calcKendall and calcPearson functi...
[mothur.git] / suffixtree.hpp
index b85cee90f93cd59cc34a604840de9d8d6c613a61..492db54772ddcc1b2e2d60ea46c1700529453e22 100644 (file)
@@ -37,11 +37,13 @@ public:
        SuffixTree();
        ~SuffixTree();
 //     SuffixTree(string, string);
+       SuffixTree(const SuffixTree&);
 
        void loadSequence(Sequence);
        string getSeqName();
        void print();   
        int countSuffixes(string, int&);
+       int countSuffixes(string);      
 
 private:       
        void addPrefix(int);
@@ -59,6 +61,7 @@ private:
        int nodeCounter;
        string seqName;
        string sequence;
+       MothurOut* m;
        
 };