Oracle
Protein-Level Functional Impact
POST /predict_protein_functionality_changePredicts the change in a protein's overall function, stability, or binding affinity given its sequence and a proposed mutation or modification.
Parameters
taskstringRequiredThe API task identifier
Example: predict_protein_functionality_change
wt_sequencestringRequiredParameter: wt_sequence
Example: MDSKG...
mut_sequencestringRequiredParameter: mut_sequence
Example: MDSKE...
Code Examples
Python Example
PYTHONimport requests
response = requests.post(
"https://api.crispro.ai/predict_protein_functionality_change",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"task": "predict_protein_functionality_change",
"wt_sequence": "MDSKG...",
"mut_sequence": "MDSKE..."
}
)
result = response.json()
print(result)cURL Example
CURLcurl -X POST https://api.crispro.ai/predict_protein_functionality_change \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"task":"predict_protein_functionality_change","wt_sequence":"MDSKG...","mut_sequence":"MDSKE..."}'Response Schema
{
"protein_functionality_score_change": "string",
"predicted_stability_change": "string",
"folding_impact_score": "string"
}