Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

crispr-grna-designer克里斯普·格兰纳设计师

Agent Skill

crispr-grna-designer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,084

周安装

251

GitHub Stars

公开资料未说明

下载量

1,988
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:crispr-grna-designer(克里斯普·格兰纳设计师)
来源仓库:https://github.com/aipoch-ai/crispr-grna-designer
安装命令:
openclaw skills install crispr-grna-designer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install crispr-grna-designer

简介

crispr-grna-designer 专为基因外显子设计 CRISPR gRNA 序列。

  • 适合分子生物学研究中需要脱靶预测和效率评分的场景。
  • 通过 clawhub 安装并使用标准命令集成到 OpenClaw 环境。
  • 操作前应核实目标基因序列合法性及是否符合当地科研规范。
  • 具体参数设置请查阅项目 README 获取算法细节与使用示例。

SKILL.md

name
crispr-grna-designer
description
Design CRISPR gRNA sequences for specific gene exons with off-target prediction and efficiency scoring. Trigger when user needs gRNA design, CRISPR guide RNA selection, or genome editing target analysis.
version
1.0.0
category
Bioinfo
tags
[crispr, grna, genome-editing, bioinformatics, off-target, cas9]
author
AIPOCH
license
MIT
status
Draft
risk_level
High
skill_type
Hybrid (Tool/Script + Network/API)
owner
AIPOCH
reviewer
last_updated
2026-02-06

CRISPR gRNA Designer

Design optimal guide RNA (gRNA) sequences for CRISPR-Cas9 genome editing. Supports on-target efficiency scoring and off-target prediction.

Use Cases

  • Design gRNAs for gene knockout (KO) experiments
  • Select high-efficiency guides for specific exons
  • Predict and minimize off-target effects
  • Optimize for SpCas9, SpCas9-NG, xCas9 variants

Input Parameters

ParameterTypeRequiredDescription
gene_symbolstringYesHGNC gene symbol (e.g., TP53, BRCA1)
target_exonintNoSpecific exon number (default: all coding exons)
genome_buildstringNoReference genome: hg38 (default), hg19, mm10
pam_sequencestringNoPAM motif: NGG (default), NAG, NGCG
guide_lengthintNogRNA length in bp (default: 20)
gc_content_minfloatNoMinimum GC% (default: 30)
gc_content_maxfloatNoMaximum GC% (default: 70)
poly_t_thresholdintNoMax consecutive T's (default: 4)
off_target_checkboolNoEnable off-target prediction (default: true)
max_mismatchesintNoMax mismatches for off-target (default: 3)

Output Format

{
  "gene": "TP53",
  "genome": "hg38",
  "guides": [
    {
      "id": "TP53_E2_G1",
      "exon": 2,
      "sequence": "GAGCGCTGCTCAGATAGCGATGG",
      "pam": "NGG",
      "position": "chr17:7669609-7669631",
      "strand": "+",
      "gc_content": 52.2,
      "efficiency_score": 0.78,
      "off_target_count": 2,
      "off_targets": [...],
      "warnings": []
    }
  ]
}

Scoring Algorithm

On-Target Efficiency Score (0-1)

Combines multiple position-specific features:

  1. Position-weighted matrix: G at position 20 (+3), C at 19 (+2), etc.
  2. GC content penalty: Outside 40-60% range reduces score
  3. Self-complementarity: Hairpin formation penalty
  4. Poly-T penalty: Transcription terminator sequences
score = w1*position_score + w2*gc_score + w3*secondary_score + w4*poly_t_score

Off-Target Prediction

  1. Seed region: Positions 12-20 (PAM-proximal) weighted 3x
  2. Bulge/mismatch tolerance: Allow up to max_mismatches
  3. Genomic location: Coding regions flagged as high-risk
  4. CFD score: Cutting Frequency Determination for off-target cleavage

Usage Examples

Basic gRNA Design

python scripts/main.py --gene TP53 --exon 4 --output results.json

High-Specificity Design (strict off-target filtering)

python scripts/main.py --gene BRCA1 --max-mismatches 2 --gc-min 35 --gc-max 65

Batch Processing

python scripts/main.py --gene-list genes.txt --genome mm10 --pam NAG

Technical Notes

⚠️ Difficulty: HIGH - Requires manual verification before experimental use

  • In silico predictions have ~60-80% correlation with actual cutting efficiency
  • Always validate top 3-5 guides experimentally
  • Off-target databases may not include rare variants or cell-line specific mutations
  • Consider using Cas9 variants (HiFi, Sniper-Cas9) for reduced off-target activity

References

See references/ for:

  • scoring_algorithms.pdf - Deep learning models (DeepCRISPR, CRISPRon)
  • off_target_databases/ - GUIDE-seq validated datasets
  • efficiency_benchmarks/ - Doench et al. 2014/2016 rules

Implementation

Core script: scripts/main.py

Key functions:

  • fetch_gene_sequence() - Retrieve exon sequences from Ensembl
  • find_pam_sites() - Identify PAM-adjacent target sites
  • score_efficiency() - Calculate on-target scores
  • predict_off_targets() - Bowtie2/BWA alignment for off-targets
  • rank_guides() - Multi-criteria optimization

Dependencies

  • Python 3.8+
  • Biopython
  • pandas, numpy
  • pysam (for off-target alignment)
  • requests (Ensembl API)

Optional:

  • bowtie2 (local off-target search)
  • ViennaRNA (secondary structure prediction)

Validation Status

  • Unit tests: 85% coverage for core algorithms
  • Benchmark: Tested against GUIDE-seq validated dataset (n=1,200 guides)
  • Status: ⏳ Requires experimental validation - predictions are computational estimates only

Risk Assessment

Risk IndicatorAssessmentLevel
Code ExecutionPython scripts with bioinformatics toolsHigh
Network AccessEnsembl API calls for gene sequencesHigh
File System AccessRead/write genome data and resultsMedium
Instruction TamperingScientific computation guidelinesLow
Data ExposureGenome data handled securelyMedium

Security Checklist

  • [ ] No hardcoded credentials or API keys
  • [ ] Ensembl API requests use HTTPS only
  • [ ] Input gene symbols validated against allowed patterns
  • [ ] Output directory restricted to workspace
  • [ ] Script execution in sandboxed environment
  • [ ] Error messages sanitized (no internal paths exposed)
  • [ ] Dependencies audited (Biopython, pandas, numpy, pysam, requests)
  • [ ] API timeout and retry mechanisms implemented
  • [ ] No exposure of internal service architecture

Prerequisites

# Python dependencies
pip install -r requirements.txt

# Optional tools
# bowtie2 (for local off-target alignment)
# ViennaRNA (for secondary structure prediction)

Evaluation Criteria

Success Metrics

  • [ ] Successfully retrieves gene sequences from Ensembl API
  • [ ] Correctly identifies PAM sites in target exons
  • [ ] On-target efficiency scores correlate with validated data (>0.6 correlation)
  • [ ] Off-target predictions identify known false positives
  • [ ] Output JSON follows specified schema
  • [ ] Batch processing handles multiple genes efficiently

Test Cases

  1. Basic gRNA Design: Input TP53 exon 4 → Valid guide RNAs with scores
  2. API Integration: Query Ensembl for gene sequence → Successful retrieval
  3. Off-target Prediction: Input guide with known off-targets → Correct prediction
  4. Multi-species: Test with hg38, hg19, mm10 → Correct genome handling
  5. Batch Processing: Input gene list → Efficient parallel processing
  6. Error Handling: Invalid gene symbol → Graceful error with helpful message

Lifecycle Status

  • Current Stage: Draft
  • Next Review Date: 2026-03-06
  • Known Issues:

- In silico predictions need experimental validation - Off-target databases may miss rare variants

  • Planned Improvements:

- Integration with additional scoring algorithms (DeepCRISPR, CRISPRon) - Support for additional Cas9 variants (Cas12, Cas13) - Enhanced batch processing with progress reporting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.75%
按下载量换算1,466

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills