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

Bonds included in filtered structure

parent 2fe743cc
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