#ifndef FREEBAYES_BIAS_H #define FREEBAYES_BIAS_H #include #include #include #include #include #include #include "split.h" using namespace std; class Bias { int minLength; int maxLength; vector biases; public: Bias(void) : minLength(0), maxLength(0) { } void open(string& file); long double bias(int length); bool empty(void); }; #endif