Explorar el Código

fixed wrong PNA backboneEnd atom name

Alexander Rose hace 6 años
padre
commit
2325ac9ad4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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'])
     }
 }