Skip to content

Commit

Permalink
steps towards 3D-scaffold replacements
Browse files Browse the repository at this point in the history
  • Loading branch information
thsa committed Sep 25, 2024
1 parent ba6e458 commit d827607
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private void initFragmentWithExitVectors() {
ArrayList<ExitVector> exitVectorList = new ArrayList<>();
for (int atom=0; atom<mMol.getAllAtoms(); atom++)
if ("*".equals(mMol.getAtomCustomLabel(atom)))
exitVectorList.add(new com.actelion.research.chem.sar.ExitVector(mMol.getConnAtom(atom, 0), atom, mMol.getAtomicNo(atom)));
exitVectorList.add(new ExitVector(mMol.getConnAtom(atom, 0), atom, mMol.getAtomicNo(atom)));

mExitVector = exitVectorList.toArray(new ExitVector[0]);
}
Expand Down

0 comments on commit d827607

Please sign in to comment.