Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,48 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- biology
|
5 |
+
- CRISPR
|
6 |
+
---
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
# CRISPR Efficiency Predictor
|
12 |
+
|
13 |
+
A deep learning model for predicting CRISPR-Cas9 editing efficiency based on DNA sequences and epigenetic features. This model integrates sequence data and epigenetic signals to provide highly accurate predictions of CRISPR editing efficiency.
|
14 |
+
|
15 |
+
---
|
16 |
+
|
17 |
+
## Model Details
|
18 |
+
|
19 |
+
- **Model Type**: Convolutional Neural Network (CNN)
|
20 |
+
- **Input Features**:
|
21 |
+
- **DNA Sequence**: 23-base target sequence, one-hot encoded.
|
22 |
+
- **Epigenetic Features**:
|
23 |
+
- CTCF (Transcription factor binding sites)
|
24 |
+
- DNase (Chromatin accessibility)
|
25 |
+
- H3K4me3 (Histone modification marker)
|
26 |
+
- RRBS (Methylation marker)
|
27 |
+
- **Output**: A single efficiency score indicating the likelihood of successful CRISPR editing for the given input.
|
28 |
+
|
29 |
+
---
|
30 |
+
|
31 |
+
## Training and Evaluation
|
32 |
+
|
33 |
+
### **Training Details**
|
34 |
+
- **Dataset**: [DeepCRISPR](https://github.com/bm2-lab/DeepCRISPR)
|
35 |
+
- Citation: Guohui Chuai, Qi Liu et al. *DeepCRISPR: optimized CRISPR guide RNA design by deep learning*. 2018 (Manuscript submitted).
|
36 |
+
- **Framework**: TensorFlow/Keras
|
37 |
+
- **Optimizer**: Adam
|
38 |
+
- **Loss Function**: Mean Squared Error (MSE)
|
39 |
+
|
40 |
+
### **Evaluation Metrics**
|
41 |
+
| Metric | Value |
|
42 |
+
|------------------------------|----------|
|
43 |
+
| R-squared (R²) | 0.9754 |
|
44 |
+
| Pearson Correlation Coefficient | 0.9876 |
|
45 |
+
| Mean Residual | -0.0003 |
|
46 |
+
| Residual Standard Deviation | 0.0032 |
|
47 |
+
|
48 |
+
---
|