MCPcopy Index your code
hub / github.com/douweschulte/pdbtbx

github.com/douweschulte/pdbtbx @v0.12.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.12.0 ↗ · + Follow
809 symbols 2,046 edges 60 files 388 documented · 48%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

DOI Compile & Test pdbtbx documentation Crates.io rustc 1.64+

Description

This is a Rust library helping to parse, edit and save crystallographic PDB/mmCIF files. It can read most atomic data from PDB/mmCIF files. Its high level goal is to create a stable, efficient and easy to use interface to PDB/mmCIF files written in pure Rust.

Contributing

As this is a library in active development, feel free to share your thoughts, ideas, hopes, and criticisms. Every comment will be read and discussed so that this library is as useful as possible for all users. Of course we all like a civilised discussion so please follow the community guidelines, but over all please be a civilised human being.

License

MIT

Why

It started as a way to use Rust in a scientific project. But it moved to an open source project because I think that using Rust in scientific computing is be really helpful and a great addition alongside the ubiquitous Python. So by creating it I hope to extend the usability of Rust a little bit more. Since Nature published an article (technology feature) which laid out the benefits of using Rust and showed that Rust is used more and more, I am planning on working more with Rust in scientific projects. And I think that the best way to help Rust move forward (in the scientific community) is by creating more support for scientific projects in Rust.

Supported features

As the main goal of this library is to allow access to the atomical data many metadata features of both PDB and mmCIF are unsupported. For both file formats the recent versions (PDB v3.30 and mmcif v5.338) are used, but as both are quite stable file formats the exact version should not matter to end users.

PDB Feature PDB mmCIF Corresponding in mmCIF
HEADER (ID) ✔️ ✔️ entry.id
REMARK ✔️ _pdbx_database_remark.id
ATOM ✔️ ✔️ atom_site
ANISOU ✔️ ✔️ atom_site
SCALE ✔️ ✔️ _atom_sites.Cartn_transf
ORIGX ✔️ ✔️ _database_PDB_matrix.origx
MATRIX ✔️ ✔️ struct_ncs_oper
CRYSTAL ✔️ ✔️ cell + symmetry
MODEL ✔️ ✔️ atom_site
MASTER 〰️ _pdbx_database_PDB_master
SEQRES 〰️ ?
DBREF ✔️ pdbx_dbref
DBREF1/2 ✔️ pdbx_dbref
MODRES ✔️ ?
SEQADV ✔️ ?
Section Keywords Support
Heterogen HET, HETNAM, HETSYN, FORMUL 🔍
Secondary structure HELIX, SHEET 🔍
Connectivity SSBOND, LINK, CISPEP, CONNECT 🔍
Title OBSLTE, TITLE, SPLIT, CAVEAT, COMPND, SOURCE, KEYWDS, EXPDTA, NUMMDL, MDLTYP, AUTHOR, REVDAT, SPRSDE, JRNL, HEADER (other columns)
Misc. SITE
Symbol Description
✔️ Supported
〰️ Partially supported
Support planned (v1.0)
🔍 Support envisioned (>v1.0)
Support not envisioned

The features where support is planned are planned to be included in the 1.0 release. The features where support is envisioned are candidates to be included, but not necessarily in the 1.0 release. The features where support is not planned are thought to be unnecessary for atomic data computations on theses files. If any of these are really needed for your use case, please raise an issue and we can discuss its inclusion. Also if you need a feature that is 'planned' or 'envisioned', feel free to raise an issue to guide development to spots where it can make a real life impact.

Additional crate features

  • The crate leverages the power of the crate Rayon to provide multithreaded iterators over PDB structures.
  • The crate leverages the power of the crate rstar to provide very efficient spatial lookup.
  • The crate has a performant way of selecting atom(s), see Search.
  • The crate has many nice helper methods for common PDB operations (renumbering, sorting, atomic properties lookup).
  • The crate has many ways of iterating over the PDB structure to allow for convenient access and control over the performance.

Latest update

v0.12.0

  • Added unified file read logic, see ReadOptions (Thanks to y1zhou and OWisset)
  • This deprecates the original read functions open_gz (still around for ease of updating) and open_raw (fully removed in this update)
  • Added unique_conformer_names for a PDB (Thanks to rvhonorato)
  • Added chains_in_contact for a PDB (Thanks to rvhonorato)

Also see changelog.

Support and development

When I am actively using this crate in my own projects this crate is actively worked on and extended. I am more than happy to receive and work on PRs and Issues even if the project seems a bit stale. But if anyone finds this project stale and wants to take over moderation and/or main development feel free to reach out and we can discuss. I would be happy to transfer the project and access to crates.io if that means the project will live on.

Join the Discussion

If you are interested in helping develop this crate and want to share ideas and plans, feel free to join our discord server.

https://discord.gg/wbjRznTVZ7

Extension points exported contracts — how you extend this code

ContainsAtomConformer (Interface)
A trait which defines all functions on a hierarchy which contains Atoms and Conformers. [8 implementers]
src/structs/hierarchy.rs
ContainsAtomConformerResidue (Interface)
A trait which defines all functions on a hierarchy which contains Atoms, Conformers, and Residues. [6 implementers]
src/structs/hierarchy.rs
ContainsAtomConformerResidueChain (Interface)
A trait which defines all functions on a hierarchy which contains Atoms, Conformers, Residues, and Chains. [4 implementers]
src/structs/hierarchy.rs
ContainsAtomConformerMut (Interface)
A trait which defines all functions on a mutable hierarchy which contains Atoms and Conformers. [4 implementers]
src/structs/hierarchy.rs
ContainsAtomConformerResidueMut (Interface)
A trait which defines all functions on a mutable hierarchy which contains Atoms, Conformers, and Residues. [3 implementers]
src/structs/hierarchy.rs

Core symbols most depended-on inside this repo

clone
called by 87
src/structs/atom.rs
parse
called by 86
src/read/pdb/lexer.rs
serial_number
called by 35
src/structs/atom.rs
apply
called by 34
src/transformation.rs
atoms
called by 33
src/structs/pdb.rs
set_level
called by 32
src/read/read_options.rs
read
called by 29
src/read/read_options.rs
id
called by 26
src/structs/chain.rs

Shape

Method 470
Function 286
Class 31
Enum 14
Interface 8

Languages

Rust97%
Python3%

Modules by API surface

src/structs/pdb.rs110 symbols
src/read/mmcif/lexer.rs70 symbols
src/structs/model.rs67 symbols
src/structs/chain.rs61 symbols
src/structs/atom.rs55 symbols
src/structs/residue.rs53 symbols
src/structs/conformer.rs43 symbols
src/structs/hierarchy.rs32 symbols
src/transformation.rs26 symbols
src/structs/search.rs23 symbols
src/read/pdb/lexer.rs23 symbols
src/structs/unit_cell.rs17 symbols

For agents

$ claude mcp add pdbtbx \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page