termal-alignment 0.2.0

Alignment parsing and metrics for the termal multiple-sequence-alignment viewer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT
// Copyright (c) 2025-2026 Thomas Junier

// A record for sequences, consisting of some description and a raw sequence. Meant to be
// format-agnostic - should work for FastA, Stockholm, GenBank, etc - though in the last cases it
// won't contain annotations.

#[derive(Debug)]
pub struct SeqRecord {
    pub header: String,
    pub sequence: String,
}