Skip to content

Commit

Permalink
initialise lddtScore numCols vars
Browse files Browse the repository at this point in the history
  • Loading branch information
gamcil committed Aug 5, 2024
1 parent ac84868 commit 99fbda5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/strucclustutils/msa2lddt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ int msa2lddt(int argc, const char **argv, const Command& command, int makeReport
// Calculate LDDT
std::vector<float> perColumnScore;
std::vector<int> perColumnCount;
float lddtScore;
int numCols;
float lddtScore = 0;
int numCols = 0;

std::vector<size_t> subset(headers.size());
for (size_t i = 0; i < subset.size(); i++)
Expand Down

0 comments on commit 99fbda5

Please sign in to comment.