Predictions
Run prediction models on molecular inputs. Each application is available as its own endpoint with application-specific inputs and outputs.
PredictionsStructure And Binding
Predict 3D structure coordinates, per-residue confidence scores, and binding metrics for a molecular complex.
Start a structure and binding prediction
client.predictions.structureAndBinding.start(StructureAndBindingStartParams { input, model, idempotency_key, workspace_id } body, RequestOptionsoptions?): StructureAndBindingStartResponse { id, completed_at, created_at, 12 more }
POST/compute/v1/predictions/structure-and-binding
List structure and binding predictions
client.predictions.structureAndBinding.list(StructureAndBindingListParams { after_id, before_id, limit, workspace_id } query?, RequestOptionsoptions?): CursorPage<StructureAndBindingListResponse { id, completed_at, created_at, 10 more } >
GET/compute/v1/predictions/structure-and-binding
Retrieve a structure and binding prediction
client.predictions.structureAndBinding.retrieve(stringid, StructureAndBindingRetrieveParams { workspace_id } query?, RequestOptionsoptions?): StructureAndBindingRetrieveResponse { id, completed_at, created_at, 12 more }
GET/compute/v1/predictions/structure-and-binding/{id}
Delete prediction data
client.predictions.structureAndBinding.deleteData(stringid, RequestOptionsoptions?): StructureAndBindingDeleteDataResponse { id, data_deleted, data_deleted_at }
POST/compute/v1/predictions/structure-and-binding/{id}/delete-data
Estimate cost for a structure and binding prediction
client.predictions.structureAndBinding.estimateCost(StructureAndBindingEstimateCostParams { input, model, idempotency_key, workspace_id } body, RequestOptionsoptions?): StructureAndBindingEstimateCostResponse { breakdown, disclaimer, estimated_cost_usd }
POST/compute/v1/predictions/structure-and-binding/estimate-cost