Skip to content

Commit

Permalink
removed debugging print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
wfondrie committed Jul 15, 2020
1 parent 13eceed commit bce0ca1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mokapot/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,6 @@ def _update_labels(self, scores, eval_fdr=0.01, desc=True):
specified FDR threshold.
"""
qvals = qvalues.tdc(scores, target=self.targets, desc=desc)
print(qvals)
unlabeled = np.logical_and(qvals > eval_fdr, self.targets)
new_labels = np.ones(len(qvals))
new_labels[~self.targets] = -1
Expand Down

0 comments on commit bce0ca1

Please sign in to comment.