Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger authored Jan 10, 2025
1 parent 6c267ec commit c5ca4c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util/gpuserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ int gpuserver(int argc, const char **argv, const Command& command) {

const bool isGpuDb = DBReader<unsigned int>::getExtendedDbtype(dbr->getDbtype()) & Parameters::DBTYPE_EXTENDED_GPU;
if (isGpuDb == false) {
Debug(Debug::ERROR) << "Database " << FileUtil::baseName(par.db1) << " is not a valid GPU database\n";
Debug(Debug::ERROR) << "Database " << FileUtil::baseName(par.db1) << " is not a valid GPU database\n"
<< "Please call: makepaddedseqdb " << FileUtil::baseName(par.db2) << " " << FileUtil::baseName(par.db2) "_pad\n";
EXIT(EXIT_FAILURE);
}

Expand Down

0 comments on commit c5ca4c3

Please sign in to comment.