Use this file to discover all available pages before exploring further.
ChemAgent can predict various molecular properties from SMILES representations, including solubility, lipophilicity, blood-brain barrier permeability, toxicity, and more.
Predict the octanol/water distribution coefficient (logD) at pH 7.4.
query = "Predict the octanol/water distribution coefficient logD under the circumstance of pH 7.4 for <SMILES> NC(=O)C1=CC=CC=C1O </SMILES>."result = generator.generate(query)print(result[0]['output'][0])# Output: <NUMBER> 1.090 </NUMBER>
LogD at pH 7.4 is particularly relevant for predicting drug absorption and distribution in physiological conditions.
Predict whether a compound can inhibit HIV replication.
query = "Can <SMILES> CC1=CN(C2C=CCCC2O)C(=O)NC1=O </SMILES> serve as an inhibitor of HIV replication?"result = generator.generate(query)print(result[0]['output'][0])# Output: <BOOLEAN> No </BOOLEAN>
This prediction is based on the HIV dataset from MoleculeNet, which contains experimental inhibition data.
Predict drug side effects by organ system (cardiovascular, digestive, nervous system, etc.).
query = "Are there any known side effects of <SMILES> CC1=CC(C)=C(NC(=O)CN(CC(=O)O)CC(=O)O)C(C)=C1Br </SMILES> affecting the heart?"result = generator.generate(query)print(result[0]['output'][0])# Output: <BOOLEAN> No </BOOLEAN>
BBBP, Clintox, HIV, and SIDER return binary Yes/No predictions based on trained classifiers. These are probabilistic predictions based on structural features.