noodles_sam/header/record/value/map/
read_group.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! SAM header record read group map value.

mod builder;
pub mod platform;
pub mod tag;

pub(crate) use self::tag::Tag;

use self::builder::Builder;
use super::Inner;

/// A SAM header record read group map value.
///
/// A read group typically defines the set of reads that came from the same run on a sequencing
/// instrument.
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct ReadGroup;

impl Inner for ReadGroup {
    type StandardTag = tag::Standard;
    type Builder = Builder;
}