Skip to content

Commit

Permalink
Merge pull request #47 from althonos/patch-1
Browse files Browse the repository at this point in the history
Fix typo in include guards in `msa.cpp`
  • Loading branch information
agudys authored Jul 24, 2024
2 parents 7eb7612 + 624b855 commit 3bfea06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/msa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down Expand Up @@ -698,4 +698,4 @@ bool CFAMSA::alignProfiles(vector<CGappedSequence>& p1, vector<CGappedSequence>&
}

return 0;
}
}

0 comments on commit 3bfea06

Please sign in to comment.