Skip to content

Commit

Permalink
BugFix (another)on how PSMs are filtered to unique PSMs
Browse files Browse the repository at this point in the history
Extended the summary output
  • Loading branch information
Lutz Fischer committed Apr 30, 2015
1 parent 7cd000a commit 275a983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/rappsilber/fdr/OfflineFDR.java
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ public void calculatePSMFDR(double fdr, double safetyFactor, boolean ignoreGroup
if (stored != null) {
if (stored.getScore()< psm.getScore())
uniquePSM.put(key, psm);
} else {
} else if (!isPsm_directional()) {
key = psm.getPeptide2().getSequence() + "_!xl!_"
+ psm.getPeptide1().getSequence() + "_!xl!_"
+ psm.getPeptideLinkSite2() + "_!xl!_"
Expand Down

0 comments on commit 275a983

Please sign in to comment.