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 SummaryModifier and TypeMethodDescriptionstatic HergClassPredictorload()Initializes the default hERG classification model.com.chemaxon.calculations.admet.HergClassPredictionRuns the prediction of the given molecule.
- 
Method Details- 
loadInitializes the default hERG classification model.- See Also:
 
- 
predictRuns the prediction of the given molecule.- Parameters:
- molecule- the input molecule
- Returns:
- the prediction result
 
 
-