douweschulte / pdbtbx

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

Home Page:https://crates.io/crates/pdbtbx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compress error messages for SEQRES

douweschulte opened this issue · comments

Currently if for some reason SEQRES residues are misaligned the library spews out a huge list of errors, this should be compressed into a smaller footprint to aid the user in seeing the problem and not be demotived by the sheer amount of errors on their screen.

Proposal: Create a single error message with all errors for a single chain. So if chain A has all residues one atom shifted this should produce:

LooseWarning: Multiple SEQRES residues not conforming

     |
425  | SEQRES   1 H    7  ACE ARG GLN ALC SOQ LEU ZCL   
     |                    ^^^ ^^^ ^^^ ^^^ ^^^ ^^^ ^^^

Found residues: ARG GLN ALC SOQ LEU ZCL LYS
(Message how to resolve this issue)

The found residues should be presented in the same formatting (amount of residues per line) as SEQRES records. Potentially it could be tried to implement a way to check if there is a simple shift that would make all (or most) residues valid. (Like shift one by removing the ACE in the example.)