Skip to content

Commit

Permalink
Try cutoff of 10 000
Browse files Browse the repository at this point in the history
  • Loading branch information
pverscha committed Aug 27, 2024
1 parent a559dea commit ebfa1e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ impl Index {
}

pub fn analyse(&self, peptides: &Vec<String>, equate_il: bool, cutoff: Option<usize>) -> Vec<SearchResult> {
search_all_peptides(&self.searcher, peptides, cutoff.unwrap_or(50_000), equate_il)
search_all_peptides(&self.searcher, peptides, cutoff.unwrap_or(10_000), equate_il)
}
}

Expand Down

0 comments on commit ebfa1e8

Please sign in to comment.