Package com.chemaxon.calculations.admet
Class HergClassPredictor
java.lang.Object
com.chemaxon.calculations.admet.HergClassPredictor
hERG class predictor.
API usage example:
var predictor = HergClassPredictor.load();
var molecule = MolImporter.importMol("CC(=O)OC1=CC=CC=C1C(O)=O");
var result = predictor.predict(molecule);
var hergClass = result.value();
var estimatedError = result.error();
-
Method Summary
Modifier and TypeMethodDescriptionstatic HergClassPredictor
load()
Initializes the default hERG classification model.com.chemaxon.calculations.admet.HergClassPrediction
Runs the prediction of the given molecule.
-
Method Details
-
load
Initializes the default hERG classification model.- See Also:
-
predict
Runs the prediction of the given molecule.- Parameters:
molecule
- the input molecule- Returns:
- the prediction result
-