Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
维护者 FreedomIntelligence · 最近更新 2026年4月1日
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.
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-pdb-structure-io
技能摘要
原始文档
| 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()
相关技能
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences f…
AlphaFold DB is a public repository of AI-predicted 3D protein structures for over 200 million proteins, maintained by D…
Antibody design: epitope mapping, CDR engineering, bispecific construction.