Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

MSA_cumulative.h

Blame
  • MSA_cumulative.h 164 B
    #ifndef MSA_CUMUL_H
    #define MSA_CUMUL_H
    
    #include "MSA.h"
    
    class MSA_cumulative : public MSA
    {
     public:
      string consensus(int threshold, int ploidity);
    };
    
    #endif