]> git.donarmstrong.com Git - mothur.git/blobdiff - kmer.hpp
fixes while testing 1.12.0
[mothur.git] / kmer.hpp
index 75ec5384ad2d3724bc61688616a7eb2ca6c9d252..d5b67d66d173cb24c179569d44886f2591ea2530 100644 (file)
--- a/kmer.hpp
+++ b/kmer.hpp
@@ -10,6 +10,8 @@
  *
  */
 
+#include "mothur.h"
+
 /**************************************************************************************************/
 
 class Kmer {
@@ -18,11 +20,10 @@ public:
        Kmer(int);
        string getKmerString(string);
        int getKmerNumber(string, int);
-       
-       
-private:
        string getKmerBases(int);
+       vector< map<int, int> > getKmerCounts(string sequence);  //for use in chimeraCheck
        
+private:
        char getASCII(int);
        int getNumber(char);
        int kmerSize;
@@ -32,4 +33,5 @@ private:
 
 /**************************************************************************************************/
 
+
 #endif