Initial check in of c++ short read programming library. These classes give functional...
[htsworkflow.git] / htswanalysis / src / SRLib / util.h
1 #ifndef UTIL_H
2 #define UTIL_H
3
4 #include <string>
5 #include <vector>
6
7 #define PI 3.14159265358979323846
8
9 using namespace std;
10
11 void split (const string& text, const string& separators, vector<string>& words);
12 void revcomp(string& output, const string& input);
13 double norm_prob(double x, double mu, double s);
14
15 #endif