]> git.donarmstrong.com Git - mothur.git/blobdiff - chimera.h
fixed bugs in venn and aligner
[mothur.git] / chimera.h
index 07ad92fb2fcc8d9f2d863f45cba2552d3e3833d4..e0e8944c6935afa6441b16c052b89b1fe2a51994 100644 (file)
--- a/chimera.h
+++ b/chimera.h
@@ -26,13 +26,16 @@ class Chimera {
        
                Chimera(){};
                Chimera(string);
+               Chimera(string, string);
                virtual ~Chimera(){};
                virtual void setFilter(bool f)                  {       filter = f;                     }
                virtual void setCorrection(bool c)              {       correction = c;         }
                virtual void setProcessors(int p)               {       processors = p;         }
                virtual void setWindow(int w)                   {       window = w;                     }
                virtual void setIncrement(int i)                {       increment = i;          }
-               virtual void setTemplate(string t)              {       templateFile = t;       }
+               
+               virtual void setCons(string) {};
+               
                
                //pure functions
                virtual void getChimeras() = 0; 
@@ -42,8 +45,7 @@ class Chimera {
                
                bool filter, correction;
                int processors, window, increment;
-               string templateFile;
-       
+                       
 
 };