From 624b855a69550b07a5204183fa8371686703b015 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Mon, 29 Apr 2024 14:54:20 +0200 Subject: [PATCH] Fix typo in include guards in `msa.cpp` --- src/msa.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msa.cpp b/src/msa.cpp index bd8f7df..69eaf1f 100644 --- a/src/msa.cpp +++ b/src/msa.cpp @@ -84,7 +84,7 @@ void CFAMSA::initScoreMatrix() { score_matrix.resize(NO_AMINOACIDS); -#ifdef HUGE_ALIGNEMENTS +#ifdef HUGE_ALIGNMENTS for(int i = 0; i < NO_AMINOACIDS; ++i) { score_vector.emplace_back(SM_MIQS[i][i]); @@ -698,4 +698,4 @@ bool CFAMSA::alignProfiles(vector& p1, vector& } return 0; -} \ No newline at end of file +}