Skip to content

Commit

Permalink
small fix ConformerSetGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
wahljo1 authored and wahljo1 committed Jan 4, 2024
1 parent 7c2a9b6 commit 6837b8d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public ConformerSet generateConformerSet(StereoMolecule mol) {
*/
StereoMolecule largestFragment = mol.getCompactCopy();
largestFragment.stripSmallFragments();
StereoMolecule canonicalFragment = new Canonizer(largestFragment).getCanMolecule();
StereoMolecule canonicalFragment = new Canonizer(largestFragment).getCanMolecule(true);

int maxTorsionSets = (int) Math.max(2 * mMaxNrConfs, (1000 * Math.sqrt(mMaxNrConfs)));
ConformerGenerator cg = new ConformerGenerator(mSeed,false);
Expand Down

0 comments on commit 6837b8d

Please sign in to comment.