Skip to content

Releases: BramDevlaminck/FastPeptideMatching

SA search testing

22 May 10:10
db3fa55
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.0.2...1.0.3

Filter away empty functional annotation string in search result

14 May 14:49
01bfc13
Compare
Choose a tag to compare
Merge pull request #24 from BramDevlaminck/empty_annotation_filter

filter away empty annotation string

Cargo dependency cleanup

14 May 08:55
c75911b
Compare
Choose a tag to compare

This release does not introduce any features.
Only the dependencies of the suffix array are cleaned up.

Suffix array peptide matching

14 May 07:58
f93d979
Compare
Choose a tag to compare

Fast, memory efficient peptide matching with suffix arrays

Ukkonen with NULL value represented by usize::MAX

30 Oct 09:56
Compare
Choose a tag to compare
  • Added some tests
  • use a lib.rs file
  • Rewrite the use of <Option<usize>> to use a type alias of usize with a NULL value trait

Ukkonen with option type

26 Oct 12:01
Compare
Choose a tag to compare
  • Working implementation of Ukkonen (or at least it should work)
  • All values that are possibly null are wrapped inside an Option => this has a lot of memory overhead (Option = 16 byte while usize is 8 byte big)