Skip to content

Commit

Permalink
Fix validation error
Browse files Browse the repository at this point in the history
  • Loading branch information
mhekkel committed Apr 29, 2024
1 parent f12e529 commit cf48470
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/pdb/validate-pdbx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ bool is_valid_pdbx_file(const file &file, std::string_view dictionary, std::erro
for (const auto &[seq_id, mon_id, hetero] : pdbx_poly_seq_scheme.find<int, std::string, bool>("entity_id"_key == entity_id, "seq_id", "mon_id", "hetero"))
{
if (entity_poly_seq.count(
"entity_id"_key == entity_id and
"mon_id"_key == mon_id and
"num"_key == seq_id and
"hetero"_key == hetero) != 1)
Expand Down

0 comments on commit cf48470

Please sign in to comment.