Get screened small molecule candidates
client.SmallMolecule.LibraryScreen.ListResults(ctx, id, query) (*CursorPage[SmallMoleculeLibraryScreenListResultsResponse], error)
GET/compute/v1/small-molecule/library-screen/{id}/results
Retrieve paginated results from a library screen
Parameters
id string
Returns
Get screened small molecule candidates
package main
import (
"context"
"fmt"
"github.com/boltz-bio/boltz-api-go"
"github.com/boltz-bio/boltz-api-go/option"
)
func main() {
client := boltzapi.NewClient(
option.WithAPIKey("My API Key"),
)
page, err := client.SmallMolecule.LibraryScreen.ListResults(
context.TODO(),
"id",
boltzapi.SmallMoleculeLibraryScreenListResultsParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", page)
}
{
"data": [
{
"id": "id",
"artifacts": {
"archive": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
},
"structure": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
}
},
"created_at": "2019-12-27T18:11:19.117Z",
"metrics": {
"binding_confidence": 0,
"complex_iplddt": 0,
"complex_plddt": 0,
"iptm": 0,
"optimization_score": 0,
"ptm": 0,
"structure_confidence": 0
},
"smiles": "smiles",
"external_id": "external_id",
"warnings": [
{
"code": "code",
"message": "message"
}
]
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}Returns Examples
{
"data": [
{
"id": "id",
"artifacts": {
"archive": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
},
"structure": {
"url": "https://example.com",
"url_expires_at": "2019-12-27T18:11:19.117Z"
}
},
"created_at": "2019-12-27T18:11:19.117Z",
"metrics": {
"binding_confidence": 0,
"complex_iplddt": 0,
"complex_plddt": 0,
"iptm": 0,
"optimization_score": 0,
"ptm": 0,
"structure_confidence": 0
},
"smiles": "smiles",
"external_id": "external_id",
"warnings": [
{
"code": "code",
"message": "message"
}
]
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}