From 25bfbdae34c5b2cc5a7f017b0072a5d6ea95667d Mon Sep 17 00:00:00 2001 From: Andrew D Smith Date: Wed, 24 Jul 2024 17:51:19 -0700 Subject: [PATCH] src/AbismalIndex.hpp: fixing the name of a proprocessor variable that got broken somehow and was preventing abismal from building with --enable-short working --- src/AbismalIndex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AbismalIndex.hpp b/src/AbismalIndex.hpp index d446b3b..37ec3ae 100644 --- a/src/AbismalIndex.hpp +++ b/src/AbismalIndex.hpp @@ -70,7 +70,7 @@ namespace seed { // window in which we select the best k-mer. The longer it is, // the longer the minimum read length that guarantees an exact // match will be mapped -#ifdef ENABLE_VERY_SHORT +#ifdef ENABLE_SHORT static const uint32_t window_size = 12u; #else static const uint32_t window_size = 20u;