Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Andrew Stirn
commited on
Commit
·
f230aaf
1
Parent(s):
cb077e6
titration bug fix
Browse files
tiger.py
CHANGED
|
@@ -225,7 +225,8 @@ def get_titration_candidates(top_guide_predictions: pd.DataFrame):
|
|
| 225 |
titration_candidates = pd.concat([titration_candidates, pd.DataFrame({
|
| 226 |
ID_COL: [row[ID_COL]],
|
| 227 |
TARGET_COL: [row[TARGET_COL]],
|
| 228 |
-
GUIDE_COL: [sm_guide]
|
|
|
|
| 229 |
})])
|
| 230 |
|
| 231 |
return titration_candidates
|
|
|
|
| 225 |
titration_candidates = pd.concat([titration_candidates, pd.DataFrame({
|
| 226 |
ID_COL: [row[ID_COL]],
|
| 227 |
TARGET_COL: [row[TARGET_COL]],
|
| 228 |
+
GUIDE_COL: [sm_guide],
|
| 229 |
+
MM_COL: [1]
|
| 230 |
})])
|
| 231 |
|
| 232 |
return titration_candidates
|