Skip to content

Commit

Permalink
fix missing adducts in CanopusSummaryWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
mfleisch committed Jun 29, 2023
1 parent 77f79b2 commit af6280b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private void addToRows(List<CanopusSummaryRow> rows, List<? extends SScored<Form
preForms.add(cid.getPrecursorFormula());
});
++i;
} while (i < results.size() && (results.get(i).getScoreObject().compareTo(hit.getScoreObject()) >= 0 || all));
} while (i < results.size() && (results.get(i).getCandidate().getId().getPrecursorFormula().equals(results.get(0).getCandidate().getId().getPrecursorFormula()) || all));
if (cfFingerprints.size() > 0) {
lock.writeLock().lock();
try {
Expand Down

0 comments on commit af6280b

Please sign in to comment.