Skip to content

Commit

Permalink
Remove check for _seq_ca in cluster search to make prostt5-based clus…
Browse files Browse the repository at this point in the history
…ter search work
  • Loading branch information
milot-mirdita committed Feb 4, 2025
1 parent f2dfbb5 commit 9c31b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workflow/StructureSearch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ int structuresearch(int argc, const char **argv, const Command &command) {
}
indexReader.close();
}else {
std::vector<std::string> dbsToCheck = {"_seq", "_seq_ca", "_seq_ss", "_seq_h"};
std::vector<std::string> dbsToCheck = {"_seq", "_seq_ss", "_seq_h"};
for (size_t i = 0; i < dbsToCheck.size(); i++) {
std::string db = par.db2 + dbsToCheck[i] + ".dbtype";
if (!FileUtil::fileExists(db.c_str())) {
Expand Down

0 comments on commit 9c31b42

Please sign in to comment.