Skip to content

Commit

Permalink
Fix createcomplexreport
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Aug 22, 2023
1 parent c97a0f5 commit e062c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/strucclustutils/createcomplexreport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ int createcomplexreport(int argc, const char **argv, const Command &command) {
const bool isDb = par.dbOut;
TranslateNucl translateNucl(static_cast<TranslateNucl::GenCode>(par.translationTable));
Debug::Progress progress(alnDbr.getSize());
Matcher::result_t res;
std::map<ComplexAlignmentKey_t, ComplexAlignment> allAlignmentsWithAssId;

#pragma omp parallel num_threads(localThreads)
Expand All @@ -113,6 +112,7 @@ int createcomplexreport(int argc, const char **argv, const Command &command) {
thread_idx = static_cast<unsigned int>(omp_get_thread_num());
#endif

Matcher::result_t res;
std::map<ComplexAlignmentKey_t, ComplexAlignment> complexAlignmentsWithAssId;

#pragma omp for schedule(dynamic, 10)
Expand Down Expand Up @@ -170,4 +170,4 @@ int createcomplexreport(int argc, const char **argv, const Command &command) {
delete tDbrHeader;
}
return EXIT_SUCCESS;
}
}

0 comments on commit e062c6a

Please sign in to comment.