aeon
aeon:Aeon是一个兼容 scikit-learn Python 工具包 ,用于 时序机器学习。 It provides state-of- -art algorithms ,用于 分类,回归,聚类,预测,异常检测,分割,、 相似性检索…
维护者 FreedomIntelligence · 最近更新 2026年4月1日
bio-genome-engineering-base-editing-design:Design guides ,用于 cytosine 、 adenine base editing ,使用 editing window optimization 、 BE-Hive outcome prediction。 Select optimal positions ,用于 C-to-T 或 -to-G conversions without double-strand breaks。 适合在designing base editor experiments ,用于 precise nucleotide changes时使用。
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-genome-engineering-base-editing-design
技能摘要
原始文档
Goal: Identify guide sequences that place a target nucleotide within the base editor's editing window while minimizing bystander edits.
Approach: Scan for PAM sites in both orientations, calculate where the target base falls within the spacer, filter guides where the target lands in the CBE (positions 4-8) or ABE (positions 4-7) editing window, and rank by fewest bystander bases in the window.
from Bio.Seq import Seq
import re
## Values represent relative editing efficiency (1.0 = maximum)
CBE_POSITION_EFFICIENCY = {
# Position: efficiency (BE4max)
1: 0.05, 2: 0.10, 3: 0.20,
4: 0.70, 5: 0.90, 6: 1.00, # Peak efficiency
7: 0.85, 8: 0.50,
9: 0.20, 10: 0.10
}
ABE_POSITION_EFFICIENCY = {
# Position: efficiency (ABE8e)
1: 0.02, 2: 0.05, 3: 0.15,
4: 0.60, 5: 0.95, 6: 1.00, # Peak at 5-6
7: 0.70,
8: 0.20, 9: 0.05
}
def predict_editing_efficiency(guide, editor='CBE'):
'''Predict editing efficiency based on position
Interpretation:
- >0.7: High efficiency expected (good candidate)
- 0.4-0.7: Moderate efficiency
- <0.4: Low efficiency (consider alternatives)
'''
pos = guide['target_position_in_spacer']
if editor == 'CBE':
efficiency = CBE_POSITION_EFFICIENCY.get(pos, 0.05)
else: # ABE
efficiency = ABE_POSITION_EFFICIENCY.get(pos, 0.05)
return efficiency
相关技能
aeon:Aeon是一个兼容 scikit-learn Python 工具包 ,用于 时序机器学习。 It provides state-of- -art algorithms ,用于 分类,回归,聚类,预测,异常检测,分割,、 相似性检索…
arxiv-database:This skill provides Python tools ,用于 searching 、 retrieving preprints ,面向 arXiv.org ,通过 its public Atom A…
bayesian-optimizer:Bayesian optimization ,用于 experimental design 、 hyperparameter tuning in biomedical research。
bio-alignment-files-bam-statistics:Compute alignment statistics:flagstat,idxstats,coverage depth。