BFGraph
Common.hpp
1 #ifndef BFG_COMMON_HPP
2 #define BFG_COMMON_HPP
3 
4 #include <cassert>
5 #include <stdint.h>
6 
7 using namespace std;
8 
9 #define BFG_VERSION "0.2"
10 #define BFG_BUG_EMAIL "guillaumeholley@gmail.com"
11 
12 static const char alpha[4] = {'A','C','G','T'};
13 
14 #endif // BFG_COMMON_HPP