Skip to content

Commit

Permalink
Update fragment.py
Browse files Browse the repository at this point in the history
  • Loading branch information
donerancl authored Jun 4, 2024
1 parent 4cc3d42 commit 1338339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/molecule/fragment.py
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ def sliceitup_arom(self, molecule, size_threshold=5):
frag2_smi = frag2.replace("*", "L")
elif frag2_L > frag1_L and frag2_R <= frag1_R:
frag1_smi = frag1.replace("*", "L")
frag2_smi = frag2.replace("*", "L")
frag2_smi = frag2.replace("*", "R")
elif frag2_R > frag1_R and frag2_L <= frag1_L:
frag1_smi = frag1.replace("*", "R")
frag2_smi = frag2.replace("*", "L")
Expand Down

0 comments on commit 1338339

Please sign in to comment.