kuva 0.2.0

Scientific plotting library in Rust with various backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
use std::collections::HashMap;

/// Controls horizontal alignment of brick rows.
///
/// Used with [`BrickPlot::with_anchor`].
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum BrickAnchor {
    /// Rows are left-aligned (default): each row starts at its offset.
    #[default]
    Left,
    /// Rows are right-aligned: trailing edges of all rows line up on the right.
    Right,
}

/// Allows `with_x_offsets` to accept plain `f64` values (auto-wrapped as `Some`)
/// as well as explicit `Option<f64>` values (for `None` fallback entries).
pub trait IntoRowOffset {
    fn into_row_offset(self) -> Option<f64>;
}

impl IntoRowOffset for f64 {
    fn into_row_offset(self) -> Option<f64> {
        Some(self)
    }
}

impl IntoRowOffset for Option<f64> {
    fn into_row_offset(self) -> Option<f64> {
        self
    }
}

fn canonical_rotation(s: &str) -> String {
    let n = s.len();
    if n == 0 {
        return String::new();
    }
    let doubled = format!("{}{}", s, s);
    (0..n)
        .map(|i| &doubled[i..i + n])
        .min()
        .expect("range 0..n is non-empty when n > 0")
        .to_string()
}

/// Pre-built character-to-color mappings for common biological alphabets.
///
/// Call a constructor method to populate the [`template`](BrickTemplate::template)
/// `HashMap`, then pass it to
/// [`BrickPlot::with_template`](BrickPlot::with_template).
///
/// # Available templates
///
/// | Method | Alphabet | Colors |
/// |--------|----------|--------|
/// | `.dna()` | A C G T | green / blue / orange / red |
/// | `.rna()` | A C G U | green / blue / orange / red |
///
/// # Example
///
/// ```rust,no_run
/// use kuva::plot::brick::BrickTemplate;
/// use kuva::plot::BrickPlot;
///
/// let tmpl = BrickTemplate::new().dna();
/// let plot = BrickPlot::new()
///     .with_sequences(vec!["ACGTACGT"])
///     .with_names(vec!["seq_1"])
///     .with_template(tmpl.template);
/// ```
#[derive(Debug, Clone)]
pub struct BrickTemplate {
    /// Map from character to CSS color string.
    pub template: HashMap<char, String>,
}

impl Default for BrickTemplate {
    fn default() -> Self {
        Self::new()
    }
}

impl BrickTemplate {
    /// Create an empty template. Call `.dna()` or `.rna()` to populate it.
    pub fn new() -> Self {
        Self {
            template: HashMap::new(),
        }
    }

    /// Populate with standard DNA colors: A → green, C → blue, G → orange, T → red.
    pub fn dna(mut self) -> Self {
        self.template.insert('A', "rgb(0,150,0)".into());
        self.template.insert('C', "rgb(0,0,255)".into());
        self.template.insert('G', "rgb(209,113,5)".into());
        self.template.insert('T', "rgb(255,0,0)".into());

        self
    }

    /// Populate with standard RNA colors: A → green, C → blue, G → orange, U → red.
    pub fn rna(mut self) -> Self {
        self.template.insert('A', "green".into());
        self.template.insert('C', "blue".into());
        self.template.insert('G', "orange".into());
        self.template.insert('U', "red".into());

        self
    }
}

/// Builder for a brick plot — a row-per-sequence visualization where each
/// character maps to a colored rectangle.
///
/// Brick plots are used in bioinformatics to display **DNA/RNA sequences**,
/// **tandem repeat structures**, and any other character-encoded per-row data.
/// Each character in a sequence is drawn as a colored brick; the color is
/// determined by a [`HashMap<char, String>`] template.
///
/// # Input modes
///
/// | Mode | How to load | Use when |
/// |------|-------------|----------|
/// | **Sequence mode** | [`with_sequences`](Self::with_sequences) + [`with_template`](Self::with_template) | Raw DNA/RNA or custom character strings |
/// | **Strigar mode** | [`with_strigars`](Self::with_strigars) | Structured tandem-repeat motif data (BLADERUNNER format) |
///
/// # Alignment
///
/// By default all rows start at x = 0. Use [`with_x_offset`](Self::with_x_offset)
/// to apply a single global offset (e.g. skip a common flanking region), or
/// [`with_x_offsets`](Self::with_x_offsets) for independent per-row alignment.
///
/// # Example
///
/// ```rust,no_run
/// use std::collections::HashMap;
/// use kuva::plot::BrickPlot;
/// use kuva::plot::brick::BrickTemplate;
/// use kuva::backend::svg::SvgBackend;
/// use kuva::render::render::render_multiple;
/// use kuva::render::layout::Layout;
/// use kuva::render::plots::Plot;
///
/// let tmpl = BrickTemplate::new().dna();
///
/// let plot = BrickPlot::new()
///     .with_sequences(vec![
///         "CGGCGATCAGGCCGCACTCATCATCATCATCAT",
///         "CGGCGATCAGGCCGCACTCATCATCATCATCATCAT",
///     ])
///     .with_names(vec!["read_1", "read_2"])
///     .with_template(tmpl.template)
///     .with_x_offset(18.0);
///
/// let plots = vec![Plot::Brick(plot)];
/// let layout = Layout::auto_from_plots(&plots)
///     .with_title("DNA Repeat Region");
///
/// let svg = SvgBackend.render_scene(&render_multiple(plots, layout));
/// std::fs::write("brick.svg", svg).unwrap();
/// ```
#[derive(Debug, Clone)]
pub struct BrickPlot {
    /// Ordered character sequences — one string per row.
    pub sequences: Vec<String>,
    /// Row labels — must match `sequences` in length.
    pub names: Vec<String>,
    /// Strigar data: `(motif_string, strigar_string)` pairs used in strigar mode.
    pub strigars: Option<Vec<(String, String)>>,
    /// Global letter → k-mer display string (set automatically in strigar mode).
    pub motifs: Option<HashMap<char, String>>,
    /// Expanded sequences derived from strigar strings (set automatically).
    pub strigar_exp: Option<Vec<String>>,
    /// Character → CSS color string. Built from [`BrickTemplate`] or supplied directly.
    pub template: Option<HashMap<char, String>>,
    /// Global x-offset applied to all rows. Default: `0.0`.
    pub x_offset: f64,
    /// Per-row offsets. `None` entries fall back to `x_offset`.
    pub x_offsets: Option<Vec<Option<f64>>>,
    /// Reference coordinate that maps to x = 0 on the axis. Default: `0.0`.
    pub x_origin: f64,
    /// Per-character nucleotide length for variable-width bricks (strigar mode).
    pub motif_lengths: Option<HashMap<char, usize>>,
    /// When `true`, draw the character label inside each brick.
    pub show_values: bool,
    /// User-supplied color palette for strigar mode. When set, overrides the
    /// built-in 20-color default. Colors are assigned in global-letter order
    /// (most-frequent motif first) and cycle if there are more motifs than colors.
    pub strigar_palette: Option<Vec<String>>,
    /// Horizontal alignment of rows. Default: `BrickAnchor::Left`.
    pub anchor: BrickAnchor,
    /// Per-row left flanking DNA sequences (set by [`with_flanked_strigars`](Self::with_flanked_strigars)).
    pub left_flanks: Option<Vec<String>>,
    /// Per-row right flanking DNA sequences (set by [`with_flanked_strigars`](Self::with_flanked_strigars)).
    pub right_flanks: Option<Vec<String>>,
    /// Append `*` to the legend label for the primary (most-frequent) motif (global letter A).
    pub mark_primary: bool,
    /// Row index whose motif rotations seed the global display labels.
    /// Set this **before** calling [`with_strigars`](Self::with_strigars) or
    /// [`with_flanked_strigars`](Self::with_flanked_strigars).
    pub consensus_row: Option<usize>,
    /// Pre-computed human-readable notation strings, one per row.
    /// `None` entries render nothing above that row.
    /// E.g. `Some("(CAG)12(GAA)1".to_string())`.
    pub notations: Option<Vec<Option<String>>>,
    /// Desired pixel height per brick row. When set, `auto_from_plots` computes
    /// the canvas height as `row_height_px * num_rows + margin_overhead`, and
    /// `Figure` computes per-grid-row heights so that panels with different read
    /// counts still have identically-sized bricks.
    pub row_height_px: Option<f64>,
}

impl Default for BrickPlot {
    fn default() -> Self {
        Self::new()
    }
}

impl BrickPlot {
    /// Create a brick plot with default settings (no data, no template, offset `0.0`).
    pub fn new() -> Self {
        Self {
            sequences: vec![],
            names: vec![],
            strigars: None,
            motifs: None,
            strigar_exp: None,
            template: Some(HashMap::new()),
            motif_lengths: None,
            x_offset: 0.0,
            x_offsets: None,
            x_origin: 0.0,
            show_values: false,
            strigar_palette: None,
            anchor: BrickAnchor::Left,
            left_flanks: None,
            right_flanks: None,
            mark_primary: false,
            consensus_row: None,
            notations: None,
            row_height_px: None,
        }
    }

    /// Load sequences — one string per row, ordered top to bottom.
    ///
    /// Each character in a string is rendered as one brick (or as a
    /// variable-width brick in strigar mode). All characters must have an
    /// entry in the template; unknown characters will cause a panic.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let plot = BrickPlot::new()
    ///     .with_sequences(vec!["ACGTACGT", "ACGTACGT"]);
    /// ```
    pub fn with_sequences<T, I>(mut self, sequences: I) -> Self
    where
        I: IntoIterator<Item = T>,
        T: Into<String>,
    {
        self.sequences = sequences.into_iter().map(|x| x.into()).collect();

        self
    }

    /// Load row labels — one name per sequence, rendered on the y-axis.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let plot = BrickPlot::new()
    ///     .with_sequences(vec!["ACGT"])
    ///     .with_names(vec!["read_1"]);
    /// ```
    pub fn with_names<T, I>(mut self, names: I) -> Self
    where
        I: IntoIterator<Item = T>,
        T: Into<String>,
    {
        self.names = names.into_iter().map(|x| x.into()).collect();

        self
    }

    /// Load strigar data and switch to **strigar mode**.
    ///
    /// Accepts `(motif_string, strigar_string)` pairs in
    /// [BLADERUNNER](https://github.com/Psy-Fer/bladerunner) format:
    ///
    /// - **motif string** — comma-separated `kmer:letter` assignments, e.g.
    ///   `"CAT:A,C:B,T:C"` binds the CAT trinucleotide to local letter `A`.
    /// - **strigar string** — run-length encoded local letters, e.g.
    ///   `"10A1B4A1C1A"` expands to ten `A`s, one `B`, four `A`s, etc.
    ///
    /// `with_strigars` normalises k-mers across all reads by canonical
    /// rotation, assigns global letters (A, B, C, …) ordered by frequency,
    /// auto-generates colors from a 10-color palette, and computes variable
    /// brick widths proportional to each motif's nucleotide length.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let strigars = vec![
    ///     ("CAT:A,T:B".to_string(), "14A1B1A".to_string()),
    ///     ("CAT:A,C:B".to_string(), "12A1B3A".to_string()),
    /// ];
    /// let plot = BrickPlot::new()
    ///     .with_names(vec!["read_1", "read_2"])
    ///     .with_strigars(strigars);
    /// ```
    /// Override the auto-generated motif colors used in strigar mode.
    ///
    /// Colors are assigned to global letters in order of motif frequency
    /// (most frequent motif gets the first color). If fewer colors are
    /// supplied than there are motifs, the list cycles. Gap bricks (`@`)
    /// always render as light grey regardless of this setting.
    ///
    /// Call this **before** [`with_strigars`](Self::with_strigars) so the
    /// palette is available during color assignment.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let plot = BrickPlot::new()
    ///     .with_strigar_colors(["#e41a1c", "#377eb8", "#4daf4a", "#984ea3"])
    ///     .with_strigars(vec![
    ///         ("CAT:A,C:B".to_string(), "12A1B3A".to_string()),
    ///     ]);
    /// ```
    pub fn with_strigar_colors<I, S>(mut self, colors: I) -> Self
    where
        I: IntoIterator<Item = S>,
        S: Into<String>,
    {
        self.strigar_palette = Some(colors.into_iter().map(|s| s.into()).collect());
        self
    }

    pub fn with_strigars<T, U, I>(mut self, strigars: I) -> Self
    where
        I: IntoIterator<Item = (T, U)>,
        T: Into<String>,
        U: Into<String>,
    {
        self.strigars = Some(
            strigars
                .into_iter()
                .map(|(motif, strigar)| (motif.into(), strigar.into()))
                .collect(),
        );

        // Returns Some(N) if `seg` is a pure gap token of the form "N@" (only digits + @),
        // which means it is an inter-candidate gap of N nucleotides.
        let parse_gap = |seg: &str| -> Option<usize> {
            let s = seg.trim();
            if s.ends_with('@') && s.len() > 1 {
                let num_part = &s[..s.len() - 1];
                if num_part.chars().all(|c| c.is_ascii_digit()) {
                    return num_part.parse().ok();
                }
            }
            None
        };

        // Parses a motif segment (comma-separated "kmer:letter" pairs) into a
        // local_letter → kmer map for one candidate.
        let parse_motif_seg = |seg: &str| -> HashMap<char, String> {
            seg.split(',')
                .map(|p| p.trim())
                .filter(|p| !p.is_empty())
                .filter_map(|pair| {
                    let mut parts = pair.splitn(2, ':');
                    let kmer = parts.next()?.trim();
                    let letter_field = parts.next()?.trim();
                    let letter = letter_field.chars().next()?;
                    Some((letter, kmer.to_string()))
                })
                .collect()
        };

        let strigars_ref = self.strigars.as_ref().expect("strigars just set");

        // Phase B: Walk every candidate segment across all reads, collect kmers,
        // build canonical-rotation frequency tables.
        // Gap segments (pure "N@") and small-gap motif entries ("@:seq") are skipped.
        let mut canonical_freq: HashMap<String, usize> = HashMap::new();
        let mut rotation_freq: HashMap<String, HashMap<String, usize>> = HashMap::new();

        for (motif_str, strigar_str) in strigars_ref {
            let motif_segs: Vec<&str> = motif_str
                .split('|')
                .map(str::trim)
                .filter(|s| !s.is_empty())
                .collect();
            let strigar_segs: Vec<&str> = strigar_str
                .split('|')
                .map(str::trim)
                .filter(|s| !s.is_empty())
                .collect();

            let mut motif_idx = 0usize;
            for strigar_seg in &strigar_segs {
                if parse_gap(strigar_seg).is_some() {
                    // Gap segment: advance motif_idx only if it's a small-gap with motif entry
                    let is_small_gap = motif_idx < motif_segs.len()
                        && motif_segs[motif_idx]
                            .trim_start_matches(|c: char| c.is_whitespace())
                            .starts_with("@:");
                    if is_small_gap {
                        motif_idx += 1;
                    }
                } else {
                    // Candidate segment: parse the STRIGAR tokens ("2A1B2A...") to get
                    // actual brick counts per letter, then map to canonical kmers.
                    // This counts bricks, not read presence, so a kmer appearing 14
                    // times across reads scores 14 rather than the same as a kmer that
                    // appears once in every read's motif string.
                    if motif_idx < motif_segs.len() {
                        let local_map = parse_motif_seg(motif_segs[motif_idx]);
                        motif_idx += 1;

                        let mut chars = strigar_seg.chars().peekable();
                        while chars.peek().is_some() {
                            let mut num_str = String::new();
                            while let Some(&c) = chars.peek() {
                                if c.is_ascii_digit() {
                                    num_str.push(chars.next().expect("peeked"));
                                } else {
                                    break;
                                }
                            }
                            if let Some(letter_char) = chars.next() {
                                let count: usize = num_str.parse().unwrap_or(1);
                                if let Some(kmer) = local_map.get(&letter_char) {
                                    let canon = canonical_rotation(kmer);
                                    *canonical_freq.entry(canon.clone()).or_insert(0) += count;
                                    *rotation_freq
                                        .entry(canon)
                                        .or_default()
                                        .entry(kmer.clone())
                                        .or_insert(0) += count;
                                }
                            }
                        }
                    }
                }
            }
        }

        // Phase B.5: If consensus_row is set, extract that row's motif rotations so
        // Phase C can lock the display label to what the consensus sequence uses.
        let mut consensus_rotations: HashMap<String, String> = HashMap::new();
        if let Some(cons_row) = self.consensus_row {
            if let Some((motif_str, strigar_str)) = strigars_ref.get(cons_row) {
                let motif_segs: Vec<&str> = motif_str
                    .split('|')
                    .map(str::trim)
                    .filter(|s| !s.is_empty())
                    .collect();
                let strigar_segs: Vec<&str> = strigar_str
                    .split('|')
                    .map(str::trim)
                    .filter(|s| !s.is_empty())
                    .collect();
                let mut midx = 0usize;
                for strigar_seg in &strigar_segs {
                    if parse_gap(strigar_seg).is_some() {
                        let is_small_gap =
                            midx < motif_segs.len() && motif_segs[midx].starts_with("@:");
                        if is_small_gap {
                            midx += 1;
                        }
                    } else if midx < motif_segs.len() {
                        let local_map = parse_motif_seg(motif_segs[midx]);
                        midx += 1;
                        for kmer in local_map.values() {
                            let canon = canonical_rotation(kmer);
                            // First occurrence per canonical wins; entry() guarantees determinism.
                            consensus_rotations
                                .entry(canon)
                                .or_insert_with(|| kmer.clone());
                        }
                    }
                }
            }
        }

        // Phase C: Sort canonicals by frequency desc, canonical string asc as tiebreak.
        let mut sorted_canonicals: Vec<(String, usize)> = canonical_freq.into_iter().collect();
        sorted_canonicals.sort_by(|a, b| b.1.cmp(&a.1).then_with(|| a.0.cmp(&b.0)));

        let mut canonical_to_global: HashMap<String, char> = HashMap::new();
        let mut global_to_display: HashMap<char, String> = HashMap::new();
        let mut global_to_length: HashMap<char, usize> = HashMap::new();

        for (idx, (canon, _freq)) in sorted_canonicals.iter().enumerate() {
            let global_letter = (b'A' + idx as u8) as char;
            canonical_to_global.insert(canon.clone(), global_letter);

            // Pick the display rotation: consensus row's rotation takes priority;
            // fall back to most-frequent rotation (tiebreak: prefer lexicographically larger).
            let rotations = rotation_freq
                .get(canon)
                .expect("canon derived from rotation_freq keys");
            let display = if let Some(cons_rot) = consensus_rotations.get(canon) {
                cons_rot.clone()
            } else {
                rotations
                    .iter()
                    .max_by(|a, b| a.1.cmp(b.1).then_with(|| b.0.cmp(a.0)))
                    .expect("rotation_freq entry is non-empty")
                    .0
                    .clone()
            };
            global_to_display.insert(global_letter, display.clone());
            global_to_length.insert(global_letter, display.len());
        }

        // Phase D: Expand each read's strigar using per-segment local→global maps.
        //
        // Each "|"-separated strigar segment is either:
        //   • A pure gap ("N@"): emit N '@' chars (large gap), or
        //     len(gap_seq) '@' chars (small gap with "@:seq" motif entry).
        //   • A candidate: build local→global from its motif segment, tokenize, expand.
        //
        // Because the global letter assignment is canonical-rotation-aware (Phase B/C),
        // the same STR unit appearing under different local letters across candidates
        // (e.g. ACCCTA:A in one and TAACCC:A in another) is automatically assigned
        // the same global letter and colour.
        let mut expanded_strigars: Vec<String> = Vec::new();
        let mut has_gaps = false;

        for (motif_str, strigar_str) in strigars_ref {
            let motif_segs: Vec<&str> = motif_str
                .split('|')
                .map(str::trim)
                .filter(|s| !s.is_empty())
                .collect();
            let strigar_segs: Vec<&str> = strigar_str
                .split('|')
                .map(str::trim)
                .filter(|s| !s.is_empty())
                .collect();

            let mut expanded = String::new();
            let mut motif_idx = 0usize;

            for strigar_seg in &strigar_segs {
                if let Some(gap_n) = parse_gap(strigar_seg) {
                    // Small gap: motif block contains "@:seq" for this segment
                    let is_small_gap = motif_idx < motif_segs.len()
                        && motif_segs[motif_idx]
                            .trim_start_matches(|c: char| c.is_whitespace())
                            .starts_with("@:");
                    let gap_nt = if is_small_gap {
                        let gap_seq = motif_segs[motif_idx]
                            .split_once(':')
                            .map(|x| x.1.trim())
                            .unwrap_or("");
                        motif_idx += 1;
                        gap_seq.len() * gap_n // typically gap_n == 1
                    } else {
                        gap_n // large gap: N is already in nt
                    };
                    for _ in 0..gap_nt {
                        expanded.push('@');
                    }
                    has_gaps = true;
                } else {
                    // Candidate segment
                    if motif_idx < motif_segs.len() {
                        // Build local → global letter map for this candidate
                        let local_map = parse_motif_seg(motif_segs[motif_idx]);
                        motif_idx += 1;

                        let mut local_to_global: HashMap<char, char> = HashMap::new();
                        for (local_letter, kmer) in &local_map {
                            let canon = canonical_rotation(kmer);
                            if let Some(&global) = canonical_to_global.get(&canon) {
                                local_to_global.insert(*local_letter, global);
                            }
                        }

                        // Tokenize "NL..." and expand
                        let mut chars = strigar_seg.chars().peekable();
                        while chars.peek().is_some() {
                            let mut num_str = String::new();
                            while let Some(&c) = chars.peek() {
                                if c.is_ascii_digit() {
                                    num_str.push(chars.next().unwrap());
                                } else {
                                    break;
                                }
                            }
                            if let Some(letter_char) = chars.next() {
                                let count: usize = num_str
                                    .parse()
                                    .expect("STRIGAR repeat count is a valid integer");
                                let global =
                                    *local_to_global.get(&letter_char).unwrap_or(&letter_char);
                                expanded.push_str(&global.to_string().repeat(count));
                            }
                        }
                    }
                }
            }

            expanded_strigars.push(expanded);
        }

        if has_gaps {
            global_to_display
                .entry('@')
                .or_insert_with(|| "@".to_string());
        }

        // Phase E: Auto-generate template colours
        // Default 20-color palette (tab10 + tab20 lighter variants).
        // Override with `with_strigar_colors` before calling `with_strigars`.
        const DEFAULT_COLORS: &[&str] = &[
            "#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", "#8c564b", "#e377c2", "#7f7f7f",
            "#bcbd22", "#17becf", "#aec7e8", "#ffbb78", "#98df8a", "#ff9896", "#c5b0d5", "#c49c94",
            "#f7b6d2", "#c7c7c7", "#dbdb8d", "#9edae5",
        ];
        let palette: Vec<&str> = match &self.strigar_palette {
            Some(p) => p.iter().map(|s| s.as_str()).collect(),
            None => DEFAULT_COLORS.to_vec(),
        };
        // Single-base motifs use the same DNA colors as the flanking-base renderer
        // so that A/T/C/G bricks are visually consistent with flanking sequence bricks.
        // Multi-base motifs consume palette slots in order, skipping single-base motifs.
        let dna_brick_color = |canon: &str| -> Option<&'static str> {
            if canon.len() != 1 {
                return None;
            }
            match canon {
                "A" | "a" => Some("rgb(0,150,0)"),
                "C" | "c" => Some("rgb(0,0,255)"),
                "G" | "g" => Some("rgb(209,113,5)"),
                "T" | "t" => Some("rgb(255,0,0)"),
                _ => None,
            }
        };
        let mut auto_template: HashMap<char, String> = HashMap::new();
        let mut palette_idx = 0usize;
        for (canon, _) in sorted_canonicals.iter() {
            let global_letter = canonical_to_global[canon];
            let color = if let Some(dna) = dna_brick_color(canon) {
                dna.to_string()
            } else {
                let c = palette[palette_idx % palette.len()].to_string();
                palette_idx += 1;
                c
            };
            auto_template.insert(global_letter, color);
        }
        // Gaps render as light grey
        if has_gaps {
            auto_template.insert('@', "rgb(200,200,200)".to_string());
        }

        self.template = Some(auto_template);
        self.motifs = Some(global_to_display);
        self.strigar_exp = Some(expanded_strigars);
        self.motif_lengths = Some(global_to_length);

        self
    }

    /// Set the character-to-color template.
    ///
    /// Keys are single characters matching those in the sequences. Values
    /// are CSS color strings. Build from [`BrickTemplate`] or construct
    /// manually for custom alphabets.
    ///
    /// ```rust,no_run
    /// use std::collections::HashMap;
    /// use kuva::plot::BrickPlot;
    ///
    /// let mut tmpl = HashMap::new();
    /// tmpl.insert('H', "steelblue".to_string());   // helix
    /// tmpl.insert('E', "firebrick".to_string());   // strand
    /// tmpl.insert('C', "#aaaaaa".to_string());     // coil
    ///
    /// let plot = BrickPlot::new()
    ///     .with_sequences(vec!["HHHCCCEEEE"])
    ///     .with_names(vec!["prot_1"])
    ///     .with_template(tmpl);
    /// ```
    pub fn with_template(mut self, template: HashMap<char, String>) -> Self {
        self.template = Some(template);
        self
    }

    /// Apply a single offset to every row.
    ///
    /// Shifts all sequences left by `x_offset` characters. Use this to align
    /// the region of interest at x = 0 when all reads share the same
    /// flanking prefix.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// // Skip an 18-character common prefix so the repeat starts at x = 0
    /// let plot = BrickPlot::new()
    ///     .with_x_offset(18.0);
    /// ```
    pub fn with_x_offset(mut self, x_offset: f64) -> Self {
        self.x_offset = x_offset;
        self
    }

    /// Apply independent offsets to individual rows.
    ///
    /// Accepts an iterable of `f64` or `Option<f64>` values (one per row,
    /// same order as [`with_sequences`](Self::with_sequences)). Plain `f64`
    /// values are treated as `Some(v)`; `None` entries fall back to the
    /// global [`x_offset`](Self::x_offset). Rows beyond the iterator length
    /// also fall back.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// // Three reads with different prefix lengths; fourth falls back to global offset 12.
    /// let plot = BrickPlot::new()
    ///     .with_x_offset(12.0)
    ///     .with_x_offsets(vec![Some(18.0_f64), Some(10.0), None]);
    /// ```
    pub fn with_x_offsets<T, I>(mut self, offsets: I) -> Self
    where
        I: IntoIterator<Item = T>,
        T: IntoRowOffset,
    {
        self.x_offsets = Some(offsets.into_iter().map(|x| x.into_row_offset()).collect());
        self
    }

    /// Align reads by their genomic start position (in nucleotides).
    ///
    /// Accepts one start coordinate per read (same order as
    /// [`with_sequences`](Self::with_sequences) /
    /// [`with_strigars`](Self::with_strigars)). Each value is the position in
    /// the reference at which that read begins; kuva shifts the row so that
    /// position aligns with the shared x-axis.
    ///
    /// This is a convenience wrapper around [`with_x_offsets`](Self::with_x_offsets):
    /// internally each start position `s` is stored as `x_offset = -s` so that
    /// `map_x(x_start - (-s)) = map_x(x_start + s)` places the first brick at
    /// coordinate `s`.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// // Two reads; read_2 starts 19 nt into the reference so its first brick
    /// // lines up with position 19 on the shared axis.
    /// let plot = BrickPlot::new()
    ///     .with_names(vec!["read_1", "read_2"])
    ///     .with_start_positions(vec![0.0_f64, 19.0]);
    /// ```
    pub fn with_start_positions<T, I>(self, positions: I) -> Self
    where
        I: IntoIterator<Item = T>,
        T: Into<f64>,
    {
        let offsets: Vec<Option<f64>> = positions.into_iter().map(|p| Some(-p.into())).collect();
        self.with_x_offsets(offsets)
    }

    /// Set the reference coordinate that appears at x = 0 on the axis.
    ///
    /// Applied on top of any per-row offsets from
    /// [`with_x_offsets`](Self::with_x_offsets) or
    /// [`with_start_positions`](Self::with_start_positions). Use this to
    /// anchor a biologically meaningful position (e.g. the repeat start) to
    /// the axis origin so the x-axis reads in coordinates relative to that
    /// point.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// // Reads start at positions 0 and 19; set x=0 at the repeat start (pos 19).
    /// // x-axis will show -19 … +N rather than 0 … M.
    /// let plot = BrickPlot::new()
    ///     .with_start_positions(vec![0.0_f64, 19.0])
    ///     .with_x_origin(19.0);
    /// ```
    pub fn with_x_origin(mut self, origin: f64) -> Self {
        self.x_origin = origin;
        self
    }

    /// Load flanked strigar data: left flank DNA, STR motif/strigar, right flank DNA.
    ///
    /// Each item is a `(left_seq, motif_string, strigar_string, right_seq)` tuple.
    /// The left and right sequences are raw DNA strings (one character = 1 nucleotide
    /// = 1 unit of axis space). The STR region is decoded the same way as
    /// [`with_strigars`](Self::with_strigars).
    ///
    /// The rendered layout per row is:
    /// `[left_flank] [STR bricks] [right_flank]`
    ///
    /// Flanks are drawn using the standard DNA colour template
    /// (A = green, C = blue, G = orange/gold, T = red).
    ///
    /// Set [`with_consensus_row`](Self::with_consensus_row) **before** calling this
    /// method if you want consensus-anchored rotation labels.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let plot = BrickPlot::new()
    ///     .with_names(vec!["consensus", "read_1"])
    ///     .with_consensus_row(0)
    ///     .with_flanked_strigars(vec![
    ///         ("ACGTACGT", "CAG:A",  "12A", "TGCATGCA"),
    ///         ("ACGTACGT", "CAG:A",  "10A", "TGCATGCA"),
    ///     ]);
    /// ```
    pub fn with_flanked_strigars<L, M, S, R, I>(mut self, flanked: I) -> Self
    where
        I: IntoIterator<Item = (L, M, S, R)>,
        L: Into<String>,
        M: Into<String>,
        S: Into<String>,
        R: Into<String>,
    {
        let mut lefts = Vec::new();
        let mut strigars = Vec::new();
        let mut rights = Vec::new();
        for (left, motif, strigar, right) in flanked {
            lefts.push(left.into());
            strigars.push((motif.into(), strigar.into()));
            rights.push(right.into());
        }
        self.left_flanks = Some(lefts);
        self.right_flanks = Some(rights);
        self.with_strigars(strigars)
    }

    /// Set horizontal alignment for all rows.
    ///
    /// `BrickAnchor::Left` (default) — rows start at their offset.
    /// `BrickAnchor::Right` — trailing edges of all rows align on the right.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// # use kuva::plot::brick::BrickAnchor;
    /// let plot = BrickPlot::new()
    ///     .with_anchor(BrickAnchor::Right);
    /// ```
    pub fn with_anchor(mut self, anchor: BrickAnchor) -> Self {
        self.anchor = anchor;
        self
    }

    /// Append `*` to the legend label of the primary (most-frequent) motif.
    ///
    /// In strigar mode the most-frequent motif is always assigned global letter A.
    /// Calling this method marks it in the legend as, e.g. `"CAG*"`.
    pub fn with_mark_primary(mut self) -> Self {
        self.mark_primary = true;
        self
    }

    /// Lock display rotations to the rotations used by a specific row (the consensus).
    ///
    /// When set, `with_strigars` / `with_flanked_strigars` seed the global display
    /// labels from this row's motif strings, so every read shows the same rotation as
    /// the consensus rather than the most-frequent rotation across all reads.
    ///
    /// **Must be called before** [`with_strigars`](Self::with_strigars) or
    /// [`with_flanked_strigars`](Self::with_flanked_strigars).
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let plot = BrickPlot::new()
    ///     .with_names(vec!["consensus", "read_1", "read_2"])
    ///     .with_consensus_row(0)          // row 0 is the consensus
    ///     .with_strigars(vec![
    ///         ("CAG:A".to_string(), "12A".to_string()),
    ///         ("AGC:A".to_string(), "10A".to_string()), // same kmer, different rotation
    ///         ("GCA:A".to_string(),  "9A".to_string()),
    ///     ]);
    /// ```
    pub fn with_consensus_row(mut self, row: usize) -> Self {
        self.consensus_row = Some(row);
        self
    }

    /// Set pre-computed human-readable notation strings, one per row.
    ///
    /// Each element is `Some(text)` to render a centred label above that row,
    /// or `None` to draw nothing. Typically the consensus row has a notation
    /// and reads may or may not.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// let plot = BrickPlot::new()
    ///     .with_names(vec!["consensus", "read_1"])
    ///     .with_notations(vec![
    ///         Some("(CAG)12".to_string()),
    ///         None,
    ///     ]);
    /// ```
    pub fn with_notations<I, T>(mut self, notations: I) -> Self
    where
        I: IntoIterator<Item = T>,
        T: Into<Option<String>>,
    {
        self.notations = Some(notations.into_iter().map(|n| n.into()).collect());
        self
    }

    /// Overlay the character label inside each brick.
    ///
    /// Useful for short sequences or large bricks where the letter is readable.
    /// For long sequences the text may become too small to see.
    pub fn with_values(mut self) -> Self {
        self.show_values = true;
        self
    }

    /// Set the desired pixel height per brick row.
    ///
    /// When set, `auto_from_plots` computes the canvas height so that each row
    /// is exactly `px` pixels tall. In a [`Figure`](crate::render::figure::Figure),
    /// panels in the same grid row auto-size so that all brick rows across
    /// different read-count plots remain identically sized — making hap1 (3 reads)
    /// and hap2 (50 reads) render with the same brick dimensions on a shared x-axis.
    ///
    /// ```rust,no_run
    /// # use kuva::plot::BrickPlot;
    /// # use kuva::plot::brick::BrickTemplate;
    /// let tmpl = BrickTemplate::new().dna();
    /// let brick = BrickPlot::new()
    ///     .with_sequences(vec!["ACGT", "ACGTACGT", "ACGT"])
    ///     .with_names(vec!["r1", "r2", "r3"])
    ///     .with_template(tmpl.template)
    ///     .with_row_height(20.0);   // 20 px per row → canvas auto-sized to 3*20 + margins
    /// ```
    pub fn with_row_height(mut self, px: f64) -> Self {
        self.row_height_px = Some(px);
        self
    }

    /// Return the number of rows (reads) in this brick plot.
    pub fn num_rows(&self) -> usize {
        if let Some(ref exp) = self.strigar_exp {
            exp.len()
        } else {
            self.sequences.len()
        }
    }
}