Skip to content

Commit

Permalink
Change > delta_c_t to >= delta_c_t.
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed Jan 31, 2018
1 parent b7ef385 commit 3aa1733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/proteomics/Search/SearchWrap.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public FinalResultEntry call() throws IOException {
}
ResultEntry resultEntry = search_obj.doSearch(spectrumEntry, xcorrPL);
if (resultEntry != null) {
if (1 - (resultEntry.getSecondScore() / resultEntry.getScore()) > delta_c_t) {
if (1 - (resultEntry.getSecondScore() / resultEntry.getScore()) >= delta_c_t) {
if (cal_evalue) {
float originalTolerance;
if (search_obj.ms1_tolerance_unit == 1) {
Expand Down

0 comments on commit 3aa1733

Please sign in to comment.