termal-alignment 0.3.0

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

use crate::seq::record::SeqRecord;

// For our purposes, a sequence file is just a Vec of sequence records.
//

pub type SeqFile = Vec<SeqRecord>;