We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e42239e + 1e332d9 commit 98a70e2Copy full SHA for 98a70e2
src/main/java/edu/ucsd/msjava/msutil/Spectrum.java
@@ -557,7 +557,7 @@ public Spectrum getDeconvolutedSpectrum(float toleranceBetweenIsotopes) {
557
558
Spectrum deconvSpec = this.getCloneWithoutPeakList();
559
boolean[] ignore = new boolean[this.size()];
560
- for (int i = 0; i < this.size() - 1; i++) {
+ for (int i = 0; i < this.size(); i++) {
561
if (ignore[i])
562
continue;
563
Peak p = this.get(i);
0 commit comments