Skip to content
Snippets Groups Projects
Commit eb31a11c authored by Valerio Mariani's avatar Valerio Mariani
Browse files

Bonds included in filtered structure

parent 357aadf9
Branches
Tags
No related merge requests found
......@@ -502,6 +502,7 @@ EntityView CheckStereoChemistry(const EntityView& ent, const StereoChemicalParam
}
std::cout << "Average Z-Score angle widths: " << std::fixed << std::setprecision(5) << avg_zscore_angles << std::endl;
std::cout << "Angles outside of tolerance range: " << bad_angle_count << " out of " << angle_count << std::endl;
filtered.AddAllInclusiveBonds();
return filtered;
}
......@@ -608,6 +609,7 @@ EntityView FilterClashes(const EntityView& ent, const ClashingDistances& min_dis
}
std::cout << bad_distance_count << " non-bonded short-range distances shorter than tolerance distance" << std::endl;
std::cout << "Distances shorter than tolerance are on average shorter by: " << std::fixed << std::setprecision(5) << average_offset << std::endl;
filtered.AddAllInclusiveBonds();
return filtered;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment