File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ needletail = { version = "0.6", default-features = false}
5252
5353[features ]
5454default = [" map-file" ]
55- map-file = [" needletail" ] # , "simdutf8"]
55+ map-file = [" needletail" ]
5656htslib = [' rust-htslib' ]
5757simde = [" minimap2-sys/simde" ]
5858zlib-ng = [" minimap2-sys/zlib-ng" ]
Original file line number Diff line number Diff line change @@ -303,9 +303,8 @@ pub struct SeqMetaData {
303303 pub is_alt : bool ,
304304}
305305
306- #[ derive( Debug ) ]
307306pub struct MMIndex {
308- pub inner : Arc < * mut mm_ffi :: mm_idx_t > ,
307+ pub inner : Arc < super :: MmIdx > ,
309308}
310309
311310impl MMIndex {
@@ -345,8 +344,7 @@ impl MMIndex {
345344impl From < & Aligner < Built > > for MMIndex {
346345 fn from ( aligner : & Aligner < Built > ) -> Self {
347346 MMIndex {
348- // inner: aligner.idx.unwrap(),
349- inner : std:: sync:: Arc :: clone ( & aligner. idx . as_ref ( ) . unwrap ( ) ) ,
347+ inner : std:: sync:: Arc :: clone ( aligner. idx . as_ref ( ) . unwrap ( ) ) ,
350348 }
351349 }
352350}
You can’t perform that action at this time.
0 commit comments