Oracle
Direct Guide RNA Cutting Efficiency Prediction
POST /predict_crispr_spacer_efficacyPredicts the on-target functional efficacy (likelihood of successful cutting/activity) of a CRISPR guide RNA spacer sequence directly from its sequence.
Parameters
taskstringRequiredThe API task identifier
Example: predict_crispr_spacer_efficacy
sequencestringRequiredParameter: sequence
Example: GACGGAGGCTAAGCGTCGCAA
Code Examples
Python Example
PYTHONimport requests
response = requests.post(
"https://api.crispro.ai/predict_crispr_spacer_efficacy",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"task": "predict_crispr_spacer_efficacy",
"sequence": "GACGGAGGCTAAGCGTCGCAA"
}
)
result = response.json()
print(result)cURL Example
CURLcurl -X POST https://api.crispro.ai/predict_crispr_spacer_efficacy \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"task":"predict_crispr_spacer_efficacy","sequence":"GACGGAGGCTAAGCGTCGCAA"}'Response Schema
{
"efficacy_score": "string",
"efficacy_prediction": "string",
"likelihood_of_interaction_change": "string"
}