一键导入
structure-prediction
Protein structure prediction using Chai-1 or AlphaFold with confidence scoring, quality assessment, and critic evaluation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Protein structure prediction using Chai-1 or AlphaFold with confidence scoring, quality assessment, and critic evaluation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search and select enzyme sequence homologs from a database. Use when users provide a query sequence and want to discover sequence homologs of the query sequence in a database.
Scientific reasoning via Jnana CoScientist — hypothesis generation, evaluation, and parameter bounding
Molecular dynamics simulations using OpenMM with MDAgent-style automation and free energy calculations via MM-PBSA
Convert scientific papers into executable computational workflows and MCP tools
Protein language model embeddings, diversity sampling, and mutation prediction using ESM or GenSLM
Analysis of molecular dynamics trajectories (RMSD, RMSF, contacts, hotspot analysis)
| name | structure-prediction |
| description | Protein structure prediction using Chai-1 or AlphaFold with confidence scoring, quality assessment, and critic evaluation |
| metadata | {"openclaw":{"requires":{"env":["OPENAI_API_KEY"],"bins":["python3"],"anyBins":["chai","alphafold"]},"primaryEnv":"OPENAI_API_KEY"}} |
Predict 3D protein structures from amino acid sequences using Chai-1 or AlphaFold backends. Includes confidence scoring, quality assessment, and an integrated critic evaluation step that flags low-quality predictions.
python skills/structure-prediction/scripts/run_prediction.py \
--sequence "MKWVTFISLLLLFSSAYSRGV..." \
--backend chai \
--num-models 5 \
--output-dir ./prediction_output
Or with a FASTA file:
python skills/structure-prediction/scripts/run_prediction.py \
--fasta input.fasta \
--backend alphafold \
--use-templates \
--output-dir ./prediction_output
The skill will:
sequence: Amino acid sequence (raw string)fasta: Path to FASTA file (alternative to sequence)backend: Prediction backend — "chai" or "alphafold" (default: "chai")num_models: Number of models to generate (default: 5)use_templates: Whether to use template structures (default: false)device: Compute device, e.g. "cuda:0" or "cpu" (default: "cuda:0")output_dir: Output directory for results (default: ./prediction_output)artifact_store: Path to artifact store for DAG integrationsequence_name: Name for the sequence (default: "query")constraints: JSON string of folding constraintsmin_confidence: Minimum acceptable pLDDT confidence (default: 60.0)high_confidence: High-confidence threshold (default: 80.0)min_coverage: Minimum sequence coverage (default: 0.9)max_clash_score: Maximum acceptable clash score (default: 10.0)prediction_quality: 0.30analysis_depth: 0.25interpretation_accuracy: 0.20methodology: 0.15efficiency: 0.10The skill produces artifacts in the Artifact DAG (Layer 3):
SEQUENCE artifacts: Input sequences with metadataPDB_STRUCTURE artifacts: Predicted 3D structures with confidence scoresSCORE artifacts: Per-model quality metrics (pLDDT, pAE, ipTM)ANALYSIS artifacts: Critic evaluation results with improvement suggestions