원클릭으로
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