Skip to main content

termal_alignment/seq/
file.rs

1// SPDX-License-Identifier: MIT
2// Copyright (c) 2025-2026 Thomas Junier
3
4use crate::seq::record::SeqRecord;
5
6// For our purposes, a sequence file is just a Vec of sequence records.
7//
8
9pub type SeqFile = Vec<SeqRecord>;