8 releases
0.1.7 | Oct 20, 2020 |
---|---|
0.1.6 | Oct 19, 2020 |
#21 in #structural
45 downloads per month
Used in 4 crates
280KB
7.5K
SLoC
protein-core
This crate provides fundamental types and data for working with protein structures.
NOTE: This crate is in early development and the API has not yet been stabilized, so do not use this crate in production. If you have any suggestions, please don't hesitate to open an issue or make a PR!
lib.rs
:
protein-core
This crate aims to provide a unified framework for representing protein structural data in Rust.
Structure
The central struct provided by this crate, Structure
, hold information roughly equivalent to that contained in a PDB or mmCIF file.
A minimal Structure
contains data that unambiguously describe the primary structure (sequences of nucleotides and/or amino acids),
any secondary structure (helices and sheets) and the identity and coordinates and connectivity of all atoms in the structure assembly.
It can also include Metadata
as an Option
.
A Structure
can either be created from scratch or parsed from specialized file formats such as PDB and mmCIF. All parsers
should aim to parse information into structs provided in the structure
and metadata
module.
Metadata
Metadata
are data that are not strictly required for describing the structure, such as the title, author, and experimental method.
Each field in Metadata
is Option
al.
Dependencies
~2.2–3MB
~59K SLoC