agentsclimarketplace

Homology modeling

Skill Kdevos12/ALKYL/skills/homology-modeling

Claude Plugin for CompChem , Drug Discovery & Organic Chemistry reasoning

Install
npx -y skills add Kdevos12/ALKYL --skill homology-modeling

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when building a 3D protein structure from sequence (no experimental structure available). Covers comparative homology modeling (MODELLER), AI-based prediction (AlphaFold2/ColabFold/ESMFold), model quality assessment (DOPE, pLDDT, Ramachandran), template search (HHblits, BLAST, Biopython), and structure preparation for MD or docking.

SKILL.md

6.4 KB, as published. Nobody here has run it

Homology Modeling — Protein Structure Prediction

MODELLER 10.x · ColabFold · ESMFold · Biopython · pdbfixer · ProDy. For building protein 3D models from sequence when no experimental structure is available.

When to Use This Skill

  • No X-ray/CryoEM structure for your target protein (or coverage is partial)
  • Building a receptor model for docking or MD when AlphaFold DB lacks your variant/mutant
  • Constructing chimeric or engineered proteins not in existing databases
  • Validating or improving an AI-predicted structure with experimental template data
  • Generating a starting conformation for free-energy calculations (→ force-fields skill)

Decision Tree — Which Method to Use

Target sequence available?
  NO → retrieve from UniProt / NCBI first

Do you have a homologous template (sequence identity > 25%)?
  YES + identity > 50%  → MODELLER (comparative, references/modeller-basics.md)
  YES + identity 25–50% → MODELLER multi-template or AlphaFold2 with template
  NO / < 25%             → AlphaFold2 / ColabFold (references/alphafold-esm.md)

Throughput?
  Single target           → ColabFold interactive / MODELLER script
  Batch (>10 proteins)    → ColabFold batch CLI or ESMFold API
  No MSA / fast screen    → ESMFold (references/alphafold-esm.md)

After modeling:
  → Validate model        → references/structure-quality.md
  → Prepare for MD        → references/structure-prep.md
  → Prepare for docking   → references/structure-prep.md + docking skill

Quick Start

# --- Option A: MODELLER comparative modeling (single template) ---
from modeller import Environ
from modeller.automodel import AutoModel

env = Environ()
env.io.atom_files_directory = ['.', '../templates']

a = AutoModel(env,
              alnfile  = 'alignment.pir',   # PIR format — see modeller-basics.md
              knowns   = '5HT2A_template',  # template code (PDB ID, no extension)
              sequence = 'TARGET_SEQ')      # target sequence ID in .pir file

a.starting_model = 1
a.ending_model   = 5    # generate 5 models, pick best by DOPE score

a.make()

# Select best model
results = [(m.molpdf, m.name) for m in a.outputs
           if m['failure'] is None]
results.sort()
print(f"Best model: {results[0][1]}  DOPE: {results[0][0]:.1f}")
# --- Option B: ColabFold (AlphaFold2 engine, local CLI) ---
colabfold_batch target.fasta output_dir/ \
    --num-models 5 \
    --num-recycle 3 \
    --amber \
    --use-gpu-relax

# Best model: output_dir/target_relaxed_rank_001_*.pdb
# Scores:     output_dir/target_scores_rank_001_*.json
# --- Option C: ESMFold (single-sequence, no MSA, fastest) ---
import torch, esm

model = esm.pretrained.esmfold_v1()
model = model.eval().cuda()

sequence = "MKTAYIAKQRQISFVKSHFSRQ..."   # full amino acid sequence

with torch.no_grad():
    output = model.infer_pdb(sequence)

with open("esmfold_model.pdb", "w") as f:
    f.write(output)
print("Model saved to esmfold_model.pdb")

Router — What to Read

TaskReference
MODELLER automodel, PIR format, loop refinement, multi-template, DOPE rankingreferences/modeller-basics.md
ColabFold CLI, AlphaFold2 output parsing, ESMFold API, pLDDT/PAE interpretationreferences/alphafold-esm.md
DOPE scores, Ramachandran analysis, MolProbity, ProDy, RMSD to experimentreferences/structure-quality.md
pdbfixer, propka3, disulfide bonds, protonation states, ACE/NME cappingreferences/structure-prep.md
HHblits/HHpred template search, BLAST, Biopython alignments, multi-template selectionreferences/template-search.md

Method Comparison

MethodBest forSeq. ID requiredSpeedAccuracy
MODELLER (automodel)Close homologs, custom restraints> 30%Medium★★★★ (with good template)
MODELLER (multi-template)Coverage gaps, divergent regions> 25%Medium★★★★
ColabFold / AlphaFold2Any target, captures remote homologsNoneSlow (GPU)★★★★★
ESMFoldFast screen, no MSA, single sequenceNoneFast (GPU)★★★

Key Tools

ToolInstallRole
modellerconda install -c salilab modeller (requires license key)Comparative modeling
colabfoldpip install colabfold[alphafold] or condaAF2-based prediction
esmpip install fair-esmESMFold single-sequence prediction
biopythonpip install biopythonPDB I/O, BLAST, alignments, Ramachandran
pdbfixerconda install -c conda-forge pdbfixerMissing residues, H addition
propkapip install propkapKa prediction, protonation states
prodypip install prodyStructural analysis, NMA, chain alignment

Installation

# MODELLER (requires free academic license from https://salilab.org/modeller/)
conda install -c salilab modeller
# Set MODELLER license key:
export KEY_MODELLER="XXXXXXXX"  # add to ~/.bashrc

# ColabFold (local, GPU recommended)
pip install "colabfold[alphafold]"
# OR via conda (recommended for reproducibility):
conda install -c conda-forge -c bioconda colabfold

# ESMFold
pip install fair-esm
# ESMFold also requires torch >= 2.0 and ~15 GB VRAM for full model

# Biopython + ProDy
pip install biopython prody

# pdbfixer + propka (structure prep)
conda install -c conda-forge pdbfixer
pip install propka

# Verify
python -c "from modeller import Environ; print('MODELLER OK')"
colabfold_batch --help
python -c "import esm; print('ESM OK')"

Related Skills

  • docking → use homology model as receptor for virtual screening (check pLDDT > 80 in pocket)
  • force-fields → MD simulation of the built model (OpenMM, AMBER, GROMACS)
  • mdanalysis → trajectory analysis after MD equilibration of the model
  • qm-dft → QM refinement of active-site geometry (xTB/ORCA)
  • free-energy → FEP/TI relative binding free energies using model receptor
  • ase → QM/MM or GFN2-xTB optimization of small binding-site models
  • PDB: use PDB MCP or pdb_database skill → download template PDB

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.