Skip to content

Commit

Permalink
Remove debugging prints
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgeiszler committed May 29, 2024
1 parent 1ac93ac commit 5430542
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ public void calculateIonPosterior() {
nDecoys = this.projDecoyCounts[i];
double q = (double) (nDecoys + 1) / (double) (nDecoys + nTargets + 2);
this.qVals[i] = q;
System.out.println(this.qVals[i]);
}
// Make array monotonic
/**
Expand All @@ -245,7 +244,6 @@ public void calculateIonPosterior() {
nDecoys = this.projDecoyCounts[i];
double q = (double) (nDecoys + 1) / (double) (nDecoys + nTargets + 2);
this.qVals[i] = q;
System.out.println(this.qVals[i]);
}
// Make array monotonic
/**
Expand Down Expand Up @@ -298,7 +296,6 @@ public void calculateNegativePredictiveValue() { // todo see if adding 1 here he
this.ionPosterior = new double[((int) (100.0 * this.binMult + 1))];
for (int i = 0; i < this.ionPosterior.length; i++) {
this.ionPosterior[i] = (double) ((this.pdf[i]) / (double) (this.pdf[i] + this.pdfDecoy[i]));
System.out.println(this.ionPosterior[i]);
}
//this.negPredictiveValue = Math.max(this.negPredictiveValue, 0.01);
}
Expand Down

0 comments on commit 5430542

Please sign in to comment.