Skip to content

Commit

Permalink
Fix decoy generation in iterative localizer
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgeiszler committed Jun 3, 2024
1 parent 069b040 commit 1771d0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ private void fitMatchedIonDistribution() throws Exception {
// decoyPep, this.ionTypes, mutationSite, 1);
// Generate target and decoy fragments
ArrayList<Float> sitePepFrags = targetPep.calculatePeptideFragments(this.ionTypes, 1);
ArrayList<Float> decoySitePepFrags = targetPep.calculateComplementaryFragments(this.ionTypes, mutatedMassShift, mutationSite, 1);
ArrayList<Float> decoySitePepFrags = decoyPep.calculateComplementaryFragments(this.ionTypes, mutatedMassShift, mutationSite, 1);

// Score over all possible sites
/**
Expand Down

0 comments on commit 1771d0d

Please sign in to comment.