Skip to content

Commit 9c31b42

Browse files
committed
Remove check for _seq_ca in cluster search to make prostt5-based cluster search work
1 parent f2dfbb5 commit 9c31b42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/workflow/StructureSearch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ int structuresearch(int argc, const char **argv, const Command &command) {
189189
}
190190
indexReader.close();
191191
}else {
192-
std::vector<std::string> dbsToCheck = {"_seq", "_seq_ca", "_seq_ss", "_seq_h"};
192+
std::vector<std::string> dbsToCheck = {"_seq", "_seq_ss", "_seq_h"};
193193
for (size_t i = 0; i < dbsToCheck.size(); i++) {
194194
std::string db = par.db2 + dbsToCheck[i] + ".dbtype";
195195
if (!FileUtil::fileExists(db.c_str())) {

0 commit comments

Comments
 (0)