Skip to content

Commit 2faa694

Browse files
authored
#6471 - Removing peptide from sense/antisence chain cause unnessussary phosphate removal (#6486)
1 parent eec822a commit 2faa694

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ketcher-core/src/application/editor/modes/SequenceMode.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -881,8 +881,8 @@ export class SequenceMode extends BaseMode {
881881
if (
882882
nodeBeforeSelection === nodeInSameChainBeforeSelection &&
883883
nodeBeforeSelection instanceof Nucleotide &&
884-
!(nodeInSameChainAfterSelection instanceof Nucleotide) &&
885-
!(nodeInSameChainAfterSelection instanceof Nucleoside)
884+
selectionStartNode instanceof Nucleoside &&
885+
(!nodeAfterSelection || nodeAfterSelection instanceof EmptySequenceNode)
886886
) {
887887
// delete phosphate from last nucleotide
888888
modelChanges.merge(

0 commit comments

Comments
 (0)