Predict and score potential off-target cleavage sites for CRISPR guides using Cas-OFFinder and CFD scoring algorithms.
# Cas-OFFinder (download binary from http://www.rgenome.net/cas-offinder/)
# Or compile from source:
git clone https://github.com/nickloman/cas-offinder
cd cas-offinder && cmake . && make
pip install pandas biopythonTell your AI agent what you want to do:
- "Check off-target sites for my guide sequence ATCGATCGATCGATCGATCG"
- "Find potential off-targets for these 5 guides in the human genome"
- "Calculate specificity scores for my CRISPR guides"
"Find off-targets for ATCGATCGATCGATCGATCG allowing up to 4 mismatches"
"What is the specificity score for this guide sequence?"
"Rank my 10 guides by off-target specificity"
"Find the most specific guide from this list"
"Check if any off-targets fall in coding regions"
"Flag off-targets in tumor suppressor genes"
- Accept guide sequence(s) and genome reference
- Run Cas-OFFinder to identify potential off-target sites
- Calculate CFD scores for each off-target
- Compute aggregate specificity scores
- Flag high-risk off-targets (low mismatch count, high CFD)
- Return ranked results with recommendations
- Mismatch tolerance - 4 mismatches balances speed and sensitivity; use 3 for faster results
- CFD threshold - Sites with CFD > 0.5 have significant cleavage risk
- Exonic off-targets - Prioritize avoiding off-targets in coding regions
- GPU acceleration - Use GPU mode for faster genome-wide searches
- Multiple guides - Always compare specificity across candidate guides