protein-get

The protein-get crate provides simple functions to fetch protein structure data files in .pdb, .cif and .bcif formats from RSCB.

Example

```rust use proteinget::getpdb;

fn main(){ let pdb1a8o = getpdb("1A8O").unwrap(); asserteq!(&pdb1a8o[62..66], b"1A8O"); } ```