jguhlin / minimap2-rs

Rust bindings to minimap2 library
Other
51 stars 11 forks source link

Add Send + Sync to Aligner, along with unit test. #55

Closed PB-DB closed 4 months ago

PB-DB commented 4 months ago

This allows an Aligner to be shared between threads instead of creating one Aligner per thread.

Also corrects a wrong cigar string in a unit test, which makes all unit tests pass. (S9 instead of 9S in the last cigar string operation.)