Skip to content

Commit

Permalink
Improve the start point in e-value estimation.
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed May 22, 2017
1 parent 588ccda commit 538a031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/proteomics/Search/CalEValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public class CalEValue {
int start_idx = min_nonzero_idx;
if (null_end_idx > 3 / ResultEntry.histogram_bin_size) {
start_idx = Math.max(min_nonzero_idx, (int) (0.75 * null_end_idx));
} else if (null_end_idx > 1.5 / ResultEntry.histogram_bin_size) {
} else {
start_idx = Math.max(min_nonzero_idx, (int) ( 0.5 * null_end_idx));
}

Expand Down

0 comments on commit 538a031

Please sign in to comment.