Browse Source

changes max hbond detection distance to 9 A

Sebastian Bittrich 6 years ago
parent
commit
635ed60b43

+ 1 - 1
src/mol-model/structure/model/properties/utils/secondary-structure.ts

@@ -214,7 +214,7 @@ namespace DSSPType {
 }
 
 /** max distance between two C-alpha atoms to check for hbond */
-const caMaxDist = 7.0;
+const caMaxDist = 9.0;
 
 /** min distance between two C-alpha atoms to check for hbond */
 const caMinDist = 0.5;