From aaab587f58d7da6ca3e8109533b84f9fb06e16da Mon Sep 17 00:00:00 2001 From: Kollin Trujillo <67711763+KollinRT@users.noreply.github.com> Date: Mon, 29 Jan 2024 19:45:52 -0800 Subject: [PATCH] Lipinski Rule of 5 was incorrectly described. (#7055) * Lipinski Rule of 5 was incorrectly described. * Update GettingStartedInPython.rst removed MLogP descriptor --- Docs/Book/GettingStartedInPython.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/Book/GettingStartedInPython.rst b/Docs/Book/GettingStartedInPython.rst index ef03576d3fb..dedb795feb6 100644 --- a/Docs/Book/GettingStartedInPython.rst +++ b/Docs/Book/GettingStartedInPython.rst @@ -3720,8 +3720,8 @@ Lipinski Rule of 5 Lipinski's "Rule of 5" [#lipinski]_ was introduced to estimate the oral bioavailability of molecules. Poor absorption is likely if the molecule violates more than one of the following conditions: * Molecular Weight <= 500 Da -* No. Hydrogen Bond Donors <= 10 -* No. Hydrogen Bond Acceptors <= 5 +* No. Hydrogen Bond Donors <= 5 +* No. Hydrogen Bond Acceptors <= 10 * LogP <= 5 .. doctest::