aboutsummaryrefslogtreecommitdiff
path: root/src/c/quikr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/quikr.h')
-rw-r--r--src/c/quikr.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/c/quikr.h b/src/c/quikr.h
new file mode 100644
index 0000000..3c0e68f
--- /dev/null
+++ b/src/c/quikr.h
@@ -0,0 +1,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;
+};