aboutsummaryrefslogtreecommitdiff
path: root/kmer_locations.c
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@jupiter.cs.drexel.edu>2014-04-18 16:18:06 -0400
committerCalvin Morrison <calvin@jupiter.cs.drexel.edu>2014-04-18 16:18:06 -0400
commit4698388304aba000592f71a10d1240ade01fb504 (patch)
tree50bfc7b2ee41a49bad62315c610bda73838766e1 /kmer_locations.c
parent1a6dae7724e2e4cf82634924adaf0101600605f4 (diff)
add OSX support, or any supprot for people without getline
Diffstat (limited to 'kmer_locations.c')
-rw-r--r--kmer_locations.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/kmer_locations.c b/kmer_locations.c
index e118b9f..10c5339 100644
--- a/kmer_locations.c
+++ b/kmer_locations.c
@@ -8,6 +8,10 @@
#include "kmer_utils.h"
+#ifdef FORCE_GETLINE
+ #include "getline/getline.h"
+#endif
+
void print_mer(unsigned long long mer, const long long pos, const bool labels, const bool reverse, unsigned int kmer, char *label) {
if(labels) {
char *kmer_str;