noodles_cram/crai/record/field.rs
1/// A CRAM index record field.
2#[derive(Clone, Copy, Debug, Eq, PartialEq)]
3pub enum Field {
4 /// Reference sequence ID.
5 ReferenceSequenceId,
6 /// Alignment start.
7 AlignmentStart,
8 /// Alignment span.
9 AlignmentSpan,
10 /// Offset of the container from the start of the stream.
11 Offset,
12 /// Offset of the slice from the start of the container.
13 Landmark,
14 /// Size of the slice in bytes.
15 SliceLength,
16}