PHP code example of nekhbet / superpred-targetprediction
1. Go to this page and download the library: Download nekhbet/superpred-targetprediction library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nekhbet / superpred-targetprediction example snippets
$client = new SuperPREDTargetPrediction(requestTimeout: 60);
$client
->setSMILESCode('Cc1cc(O)c2C(=O)c3c(O)cc(O)c4c3c3c2c1c1c2c3c3c4c(O)cc(O)c3C(=O)c2c(O)cc1C')
->run();
$binders = $client->getBinders();
$targets = $client->getTargets(min_probability: 80, min_model_accuracy: 95);
$indications = $client->getIndications(min_probability: 80, min_model_accuracy: 95);