Browse Source

fixed wrong PNA backboneEnd atom name

Alexander Rose 6 years ago
parent
commit
2325ac9ad4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/mol-model/structure/model/types.ts

+ 1 - 1
src/mol-model/structure/model/types.ts

@@ -87,7 +87,7 @@ export const MoleculeTypeAtomRoleId: { [k: number]: { [k in AtomRole]: Set<strin
         trace: new Set(['N4\'', 'N4*']),
         direction: new Set(['C7\'', 'C7*']),
         backboneStart: new Set(['N1\'', 'N1*']),
-        backboneEnd: new Set(['C1\'', 'C1*']),
+        backboneEnd: new Set(['C\'', 'C*']),
         coarseBackbone: new Set(['P'])
     }
 }