All Projects → douweschulte → pdbtbx

douweschulte / pdbtbx

Licence: MIT License
A library to open/edit/save (crystallographic) Protein Data Bank (PDB) and mmCIF files in Rust.

Programming Languages

rust
11053 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pdbtbx

pdb-benchmarks
Benchmarking common tasks on proteins in various languages and packages
Stars: ✭ 33 (+153.85%)
Mutual labels:  pdb, mmcif
hPDB
PDB parser in Haskell
Stars: ✭ 20 (+53.85%)
Mutual labels:  pdb, pdb-parser
cargo-clone
A cargo subcommand to fetch the source code of a Rust crate
Stars: ✭ 72 (+453.85%)
Mutual labels:  rust-crate
PeakPo
X-ray diffraction data analysis for high pressure and high temperature experiments
Stars: ✭ 14 (+7.69%)
Mutual labels:  crystallography
debyer
Debye's scattering equation & other analysis of atomistic models.
Stars: ✭ 32 (+146.15%)
Mutual labels:  crystallography
RosettaDesign
RosettaDesign using PyRosetta
Stars: ✭ 19 (+46.15%)
Mutual labels:  pdb
stylo
Stylo est un éditeur de textes pour articles scientifiques en sciences humaines et sociales.
Stars: ✭ 29 (+123.08%)
Mutual labels:  scientific
SciCompforChemists
Scientific Computing for Chemists text for teaching basic computing skills to chemistry students using Python, Jupyter notebooks, and the SciPy stack. This text makes use of a variety of packages including NumPy, SciPy, matplotlib, pandas, seaborn, NMRglue, SymPy, scikit-image, and scikit-learn.
Stars: ✭ 65 (+400%)
Mutual labels:  scientific
rust-security
Rust语言安全相关分析
Stars: ✭ 12 (-7.69%)
Mutual labels:  rust-crate
ode-solvers
Numerical methods to solve ordinary differential equations in Rust.
Stars: ✭ 19 (+46.15%)
Mutual labels:  rust-crate
ert
ERT—Ensemble based Reservoir Tool—is a tool to run ensemble based on reservoir models. ERT was originally devised as tool to do model updating (history matching) with the EnKF method, now the primary method for model updating is the Ensemble Smoother (ES).
Stars: ✭ 57 (+338.46%)
Mutual labels:  scientific
pymolshortcuts
The repository pymolschortucts contains the a collection of shortcuts that are loaded on startup of PyMOL. These shortcuts enable websearches from within PyMOL as well as many other convienent functions that make work in PyMOL more productive..
Stars: ✭ 34 (+161.54%)
Mutual labels:  pdb
ecs-rust
Tiny ECS library in Rust
Stars: ✭ 32 (+146.15%)
Mutual labels:  rust-crate
teamcity-symbol-server
TeamCity Symbol Server plugin
Stars: ✭ 16 (+23.08%)
Mutual labels:  pdb
biskit
A Python platform for Structural Bioinformatics
Stars: ✭ 47 (+261.54%)
Mutual labels:  scientific
docker-pudb
Debug Python code within a Docker container remotely from your terminal using pudb
Stars: ✭ 18 (+38.46%)
Mutual labels:  pdb
trickster
user-friendly linux memory hacking library
Stars: ✭ 50 (+284.62%)
Mutual labels:  rust-crate
reciprocalspaceship
Tools for exploring reciprocal space
Stars: ✭ 17 (+30.77%)
Mutual labels:  crystallography
libROM
Model reduction library with an emphasis on large scale parallelism and linear subspace methods
Stars: ✭ 66 (+407.69%)
Mutual labels:  scientific
blase
Python module for drawing and rendering ASE (Atomic Simulation Environment) atoms and molecules objects using blender.
Stars: ✭ 12 (-7.69%)
Mutual labels:  atoms

Compile & Test Crates.io DOI

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, just use it if you can use it. If you use it for something cool I would like to hear, but no obligations!

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.

Contributors

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.

supported features table

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.9.0 'Structured search'

  • Added find method on all levels in the PDB, this should allow for human friendly atom(s) searching. pdb.find(Term::ConformerName("ALA".to_string()) + Term::AtomName("CA".to_string()))
  • Added bounding_box to the PDB struct.
  • Added atom.overlaps_bound() which uses covalent bond radii instead of unbound radii. (Thanks to raised issue)
  • Extended atomic_number to take the first character of the name if this is one of "CHONS" and the element is unset and the name is not an element name.
  • Updated covalent bond radii to work in Å as well (was picometers).
  • Respecified the dependencies versions to allow cargo to more often reuse dependencies in complex projects.

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 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 to project and access to crates.io if that means the project will live on.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].