aboutsummaryrefslogtreecommitdiff
path: root/kmer_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'kmer_utils.c')
-rw-r--r--kmer_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kmer_utils.c b/kmer_utils.c
index 5e24584..b29cd24 100644
--- a/kmer_utils.c
+++ b/kmer_utils.c
@@ -167,7 +167,7 @@ unsigned long long * get_kmer_counts_from_file(const char *fn, const unsigned in
// for each char in the k-mer check if it is an error char
for(i = posistion + kmer - 1; i >= posistion; i--){
- if(str[i] >> 2) {
+ if(str[i] == 5) {
mer = width;
posistion = i;
goto next;