Skip to main content

termal_alignment/seq/
record.rs

1// SPDX-License-Identifier: MIT
2// Copyright (c) 2025-2026 Thomas Junier
3
4// A record for sequences, consisting of some description and a raw sequence. Meant to be
5// format-agnostic - should work for FastA, Stockholm, GenBank, etc - though in the last cases it
6// won't contain annotations.
7
8#[derive(Debug)]
9pub struct SeqRecord {
10    pub header: String,
11    pub sequence: String,
12}