Skip to content

Commit 274305f

Browse files
committed
improved warning stderr for zero poses after docking
1 parent e586db5 commit 274305f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/lib/vina.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,8 @@ void Vina::global_search(const int exhaustiveness, const int n_poses, const doub
10141014
// Clean up by putting back the best pose in model
10151015
m_model.set(poses[0].c);
10161016
} else {
1017-
std::cerr << "WARNING: Zero poses in output container after global search. Something went wrong.\n";
1017+
std::cerr << "WARNING: Zero poses in output container after global search. This should not be happening and is likely a bug.\n";
1018+
std::cerr << "WARNING: If possible, please file a bug report with your input files and random seed on GitHub.\n";
10181019
}
10191020

10201021
// Store results in Vina object

0 commit comments

Comments
 (0)