We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd22ef2 commit c4735bfCopy full SHA for c4735bf
src/lib.rs
@@ -341,7 +341,7 @@ impl Aligner<()> {
341
let mut aligner = Aligner {
342
mapopt: MapOpt {
343
seed: 11,
344
- best_n: 1,
+ // best_n: 1,
345
..Default::default()
346
},
347
@@ -2267,6 +2267,15 @@ mod tests {
2267
);
2268
}
2269
2270
+ #[test]
2271
+ fn mapopt_defaults() {
2272
+ let aligner = Aligner::builder().map_ont();
2273
+ println!("{:#?}", aligner.mapopt);
2274
+
2275
+ let aligner = Aligner::builder();
2276
2277
+ }
2278
2279
#[test]
2280
fn build_aligner_memory_leak() {
2281
for _ in 0..100000 {
0 commit comments