Push luqxvxskktxv #68

Merged
coissac merged 2 commits from push-luqxvxskktxv into main 2026-08-17 10:35:13 +00:00
Showing only changes of commit 700eaeaed2 - Show all commits
+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) // The k-mer with A+other (mask 0b0011 = A+C)
let kmer_str = "AGCTAGCTATTGAGCCTGGTCCGTATGAAAC"; let kmer_str = "AGCTAGCTATTGAGCCTGGTCCGTATGAAAC";
let kmer = CanonicalKmer::from_str(kmer_str, k).unwrap(); let kmer = canonical(kmer_str.as_bytes());
let rc = kmer.revcomp(); let rc_str = kmer_revcomp_to_string(&kmer, k);
let rc_str = kmer_to_string(&rc, k);
println!("kmer_forward={} kmer_revcomp={}", kmer_str, rc_str); println!("kmer_forward={} kmer_revcomp={}", kmer_str, rc_str);
println!("kmer partition={}", kmer.partition(n_parts)); println!("kmer partition={}", kmer.partition(n_parts));