Get screened protein candidates
client.Protein.LibraryScreen.ListResults(ctx, id, query) (*CursorPage[ProteinLibraryScreenListResultsResponse], error)
GET/compute/v1/protein/library-screen/{id}/results
Retrieve paginated results from a protein library screen
Parameters
id string
Returns
Get screened protein 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.Protein.LibraryScreen.ListResults(
context.TODO(),
"id",
boltzapi.ProteinLibraryScreenListResultsParams{
},
)
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",
"entities": [
{
"chain_ids": [
"string"
],
"type": "protein",
"value": "value",
"cyclic": true,
"modifications": [
{
"residue_index": 0,
"type": "ccd",
"value": "value"
}
]
}
],
"metrics": {
"binding_confidence": 0,
"helix_fraction": 0,
"iptm": 0,
"loop_fraction": 0,
"min_interaction_pae": 0,
"sheet_fraction": 0,
"structure_confidence": 0
},
"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",
"entities": [
{
"chain_ids": [
"string"
],
"type": "protein",
"value": "value",
"cyclic": true,
"modifications": [
{
"residue_index": 0,
"type": "ccd",
"value": "value"
}
]
}
],
"metrics": {
"binding_confidence": 0,
"helix_fraction": 0,
"iptm": 0,
"loop_fraction": 0,
"min_interaction_pae": 0,
"sheet_fraction": 0,
"structure_confidence": 0
},
"external_id": "external_id",
"warnings": [
{
"code": "code",
"message": "message"
}
]
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}