Merge pull request 'Push luqxvxskktxv' (#68) from push-luqxvxskktxv into main

Reviewed-on: #68
This commit was merged in pull request #68.
This commit is contained in:
2026-08-17 10:35:12 +00:00
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "obikmer"
version = "1.2.0"
version = "1.2.1"
edition = "2024"
[[bin]]
+1 -1
View File
@@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2024"
[dependencies]
obikindex = { path = "../obikindex" }
obikindex = { path = "../obikindex", default-features = false }
obikseq = { path = "../obikseq" }
obikpartitionner = { path = "../obikpartitionner" }
obiskio = { path = "../obiskio" }
+2 -3
View File
@@ -1108,9 +1108,8 @@ fn diag_real_index_verify_kmer_resolution() {
// The k-mer with A+other (mask 0b0011 = A+C)
let kmer_str = "AGCTAGCTATTGAGCCTGGTCCGTATGAAAC";
let kmer = CanonicalKmer::from_str(kmer_str, k).unwrap();
let rc = kmer.revcomp();
let rc_str = kmer_to_string(&rc, k);
let kmer = canonical(kmer_str.as_bytes());
let rc_str = kmer_revcomp_to_string(&kmer, k);
println!("kmer_forward={} kmer_revcomp={}", kmer_str, rc_str);
println!("kmer partition={}", kmer.partition(n_parts));