{% macro chemdraw() %}
{% endmacro %} {% macro error_message(message) %} {% if message %} {% endif %} {% endmacro %} {% macro warning_message(message) %} {% if message %} {% endif %} {% endmacro %} {% macro blood_brain_barrier_safe() %} Blood-Brain Barrier Safe: The probability that the molecule does not cross the blood-brain barrier (i.e., 1 - Blood-Brain Barrier Penetration percentile). {% endmacro %} {% macro hERG_safe() %} hERG Safe: The probability that the molecule does not block the human ether-a-go-go (hERG) channel (i.e., 1 - hERG Blocking percentile). {% endmacro %} {% macro bioavailable() %} Bioavailable: The probability that the molecule is orally bioavailable (i.e., Oral Bioavailability percentile). {% endmacro %} {% macro soluble() %} Soluble: The aqueous solubility of the molecule (i.e., Aqueous Solubility percentile). {% endmacro %} {% macro non_toxic() %} Non-Toxic: The probability that the molecule would not show clinical toxicity (i.e., 1 - ClinTox percentile). {% endmacro %} {% macro radial_description_list() %}
  1. {{ blood_brain_barrier_safe() }}
  2. {{ hERG_safe() }}
  3. {{ bioavailable() }}
  4. {{ soluble() }}
  5. {{ non_toxic() }}
{% endmacro %} {% macro radial_description_tooltip() %} {{ blood_brain_barrier_safe() }}

{{ hERG_safe() }}

{{ bioavailable() }}

{{ soluble() }}

{{ non_toxic() }} {% endmacro %}