blob: 3c0e68f94558c786bbc0b178ad0a3805a27949c7 (
plain)
1
2
3
4
5
6
7
8
9
|
#define MATRIX_REVISION 0
#define pow_four(x) ( (unsigned long long)1 << (x * 2 ) )
struct matrix {
unsigned long long sequences;
unsigned int kmer;
double *matrix;
char **headers;
};
|