Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Maintainer FreedomIntelligence · Last updated April 1, 2026
Parse and write protein structure files using Biopython Bio.PDB. Use when reading PDB, mmCIF, and MMTF files, downloading structures from RCSB PDB, or writing structures to various formats.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-pdb-structure-io
Skill Snapshot
Source Doc
| Format | Parser | Writer | Description |
|---|---|---|---|
| PDB | PDBParser | PDBIO | Legacy format, limited to 99999 atoms |
| mmCIF | MMCIFParser | MMCIFIO | Modern standard, full metadata |
| MMTF | MMTFParser | - | Compact binary (read-only in Biopython) |
| BinaryCIF | BinaryCIFParser | - | Compact binary, RCSB recommended |
from Bio.PDB import MMCIFParser
parser = MMCIFParser(QUIET=True)
structure = parser.get_structure('1abc', '1abc.cif')
## Downloading from RCSB PDB
```python
from Bio.PDB import PDBList
pdbl = PDBList()
Related skills
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein sequences via API or…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences fold correctly, (2) P…
AlphaFold DB is a public repository of AI-predicted 3D protein structures for over 200 million proteins, maintained by DeepMind and EMBL-EBI…
Antibody design: epitope mapping, CDR engineering, bispecific construction.