Skip to content

Commit

Permalink
Progress update fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Feb 26, 2022
1 parent 58593ec commit be8c278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/pairaln.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ int pairaln(int argc, const char **argv, const Command& command) {
for (size_t fileNumber = 0; fileNumber < fileToIds.size(); fileNumber++) {
char buffer[1024 + 32768 * 4];
findPair.clear();
progress.updateProgress();

// find intersection between all proteins
for (size_t i = 0; i < fileToIds[fileNumber].size(); i++) {
Expand Down Expand Up @@ -91,7 +92,6 @@ int pairaln(int argc, const char **argv, const Command& command) {
}

for (size_t i = 0; i < fileToIds[fileNumber].size(); i++) {
progress.updateProgress();
result.clear();
output.clear();
size_t id = fileToIds[fileNumber][i];
Expand Down

0 comments on commit be8c278

Please sign in to comment.