Skip to content

Commit

Permalink
Mols were wrong way round... wonder if this would have change results…
Browse files Browse the repository at this point in the history
… n years ago... (in CDK Legacy)
  • Loading branch information
johnmay committed May 18, 2018
1 parent 016450b commit 422d778
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ private void setVFMappings(boolean rONP, IQuery query) {
} else {
tAtom = query.getAtom(mapping.getKey());
qAtom = mapping.getValue();
qIndex = getReactantMol().indexOf(qAtom);
tIndex = getProductMol().indexOf(tAtom);
qIndex = getProductMol().indexOf(qAtom);
tIndex = getReactantMol().indexOf(tAtom);
}

if (qIndex != -1 && tIndex != -1) {
Expand Down

0 comments on commit 422d778

Please sign in to comment.