The Protein Data Bank¶
About¶
Quote
Since 1971, the Protein Data Bank archive (PDB) has served as the single repository of information about the 3D structures of proteins, nucleic acids, and complex assemblies.
About this App¶
Simmate's pdb
app helps to download PDB data & load it into the Simmate database.
Module | CLI | Workflows | Data |
---|---|---|---|
simmate.apps.pdb |
Installation¶
-
Add
pdb
to the list of installed Simmate apps with:simmate config add pdb
-
Ensure everything is configured correctly:
simmate config test pdb
-
Add new tables to your database:
simmate database update
-
Download all PDB datasets:
simmate database download pdb
Datasets¶
Dataset | Disk Space | Rows (#) | SQL Table | Python Class |
---|---|---|---|---|
Ligand Molecules | --- | --- | pdb__ligands |
PdbLigand |
Tip
Read through our database guide to learn how to work with these datasets
Example
from simmate.database import connect
from simmate.apps.pdb.models import PdbLigand
mol_sample_data = PdbLigand.objects.to_dataframe(limit=5_000)