From 59ff0a86e855cd78628af40ade8b2e096eb8833e Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Tue, 7 Jan 2014 16:01:25 -0500 Subject: fix kmer_counts_per_sequence, make sure we convert the array fully, and update kmer_utils for str[i] == 5 instead of >> 2 --- kmer_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kmer_utils.c') diff --git a/kmer_utils.c b/kmer_utils.c index dc79700..2b3ce67 100644 --- a/kmer_utils.c +++ b/kmer_utils.c @@ -34,7 +34,7 @@ inline unsigned long num_to_index(const char *str, const int kmer, const long er for(i = kmer - 1; i >= 0; i--){ - if(str[i] >> 2) { + if(str[i] == 5) { #ifndef SHARED position += i; #endif -- cgit v1.2.3