Skip to content

Commit

Permalink
Output RSA values in CIF output regardless of if there are relative v…
Browse files Browse the repository at this point in the history
…alues available or not.
  • Loading branch information
mittinatten committed May 5, 2021
1 parent b402878 commit c204ce7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cif.cc
Expand Up @@ -611,8 +611,7 @@ populate_freesasa_result_vectors(gemmi::cif::Table &table, freesasa_node *result
while (chain) {
residue = freesasa_node_children(chain);
while (residue) {
if (!(options & FREESASA_OUTPUT_SKIP_REL))
append_freesasa_rsa_residue_to_block(table.bloc, residue);
append_freesasa_rsa_residue_to_block(table.bloc, residue);
atom = freesasa_node_children(residue);
while (atom) {
auto cName = std::string(1, freesasa_node_atom_chain(atom));
Expand Down

1 comment on commit c204ce7

@danny305
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh! yeah I forgot I added that check.

Please sign in to comment.