From 80ff446aaf4e08a6828013d4abebae7e3ca8dc84 Mon Sep 17 00:00:00 2001 From: Evelin Date: Tue, 1 Oct 2024 15:08:11 +0200 Subject: [PATCH] Fix --- include/dream_stellar/stellar_output.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dream_stellar/stellar_output.hpp b/include/dream_stellar/stellar_output.hpp index 77f6fdc0..02205b77 100755 --- a/include/dream_stellar/stellar_output.hpp +++ b/include/dream_stellar/stellar_output.hpp @@ -219,7 +219,7 @@ _computeEValueFromLengthAdjustment(TRow const & row0, uint64_t const & refLen, T template double _computeEValueFromScore(uint64_t const refLen, TSize const len1, TSize const score) { - TSize lengthAdjustment = _computeLengthAdjustment(len0, len1); + TSize lengthAdjustment = _computeLengthAdjustment(refLen, len1); TSize m = refLen - lengthAdjustment; TSize n = len1 - lengthAdjustment;