chemaxon.calculations.admet_predictors
Enumeration for hERG inhibition classification types used in the hERG classification predictor.
hERG inhibition prediction result object
hERG inhibition activity prediction result object
Enumeration for blood-brain barrier penetration properties used in the BBB predictor.
Blood-brain barrier penetration prediction property object
Blood-brain barrier penetration prediction result object
Predicted blood-brain barrier penetration scores for each property used in the prediction, as well as the predicted value for each property.
Enumeration for CNS MPO score prediction properties used in the CNS MPO predictor.
CNS MPO score prediction property
CNS MPO score prediction result object
Predicted CNS MPO scores for each property used in the prediction, as well as the predicted value for each property.
Predict hERG class inhibition.
For more information: https://docs.chemaxon.com/latest/calculators_herg.html?h=herg#the-herg-classification-model
Example usage:
from chemaxon import import_mol
from chemaxon import herg_classification
mol = import_mol("CCN(CC)CCOC(=O)c1ccccc1C(=O)O")
result = herg_classification(mol)
print(f'Classification: {result.classification}')
print(f'Probabilities: {result.probabilities}')
Parameters
- mol:
Molecule- Input molecule
Returns
HergClassResult- Result object containing classification
Predict hERG inhibition activity.
For more information: https://docs.chemaxon.com/latest/calculators_herg.html?h=herg#the-herg-activity-model
Example usage:
from chemaxon import import_mol
from chemaxon import herg_activity
mol = import_mol("CCN(CC)CCOC(=O)c1ccccc1C(=O)O")
result = herg_activity(mol)
print(f'value: {result.value}')
print(f'error: {result.error}')
Parameters
- mol:
Molecule- Input molecule
Returns
int- Predicted hERG inhibition activity
Predict blood-brain barrier penetration.
For more information: https://docs.chemaxon.com/latest/calculators_bbb-score.html?h=bbb+score#blood-brain-barrier-bbb-score-predictor
Example usage:
from chemaxon import import_mol
from chemaxon.calculations import bbb
mol = import_mol("CCN(CC)CCOC(=O)c1ccccc1C(=O)O")
result = bbb(mol)
print(f'value: {result.score}')
print(f'error: {result.properties}')
Parameters
- mol:
Molecule- Input molecule
Returns
BbbResult- Predicted blood-brain barrier scores by properties and the overall (multiplied) score
Predict CNS MPO score.
For more information: https://docs.chemaxon.com/latest/calculators_cns-mpo-score.html
Example usage:
from chemaxon import import_mol
from chemaxon.calculations import cns_mpo
mol = import_mol("CCN(CC)CCOC(=O)c1ccccc1C(=O)O")
result = cns_mpo(mol)
print(f'value: {result.score}')
print(f'error: {result.properties}')
Parameters
- mol:
Molecule- Input molecule
Returns
CnsMpoResult- Predicted CNS MPO score and scores by properties