From c204ce7b9c6c11af2cf3113a4d02de83ddc934c3 Mon Sep 17 00:00:00 2001 From: Simon Mitternacht Date: Wed, 5 May 2021 20:38:29 +0200 Subject: [PATCH] Output RSA values in CIF output regardless of if there are relative values available or not. --- src/cif.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cif.cc b/src/cif.cc index 1aadf59..62d2039 100644 --- a/src/cif.cc +++ b/src/cif.cc @@ -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));