noodles_vcf/header/record/value/map.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
//! VCF header map value.
pub mod alternative_allele;
mod builder;
pub mod contig;
pub mod filter;
pub mod format;
pub mod info;
pub mod other;
pub(crate) mod tag;
pub use self::{
alternative_allele::AlternativeAllele, builder::Builder, contig::Contig, filter::Filter,
format::Format, info::Info, other::Other,
};
use std::fmt;
use indexmap::IndexMap;
pub(crate) type OtherFields<S> = IndexMap<tag::Other<S>, String>;
/// An inner VCF header map value.
pub trait Inner: Sized {
/// The standard tag type.
type StandardTag: tag::Standard;
/// The builder type.
type Builder: builder::Inner<Self>;
}
/// An inner VCF header map value with number and type fields.
pub trait Typed: Inner {
/// The number type.
type Number;
/// The type type.
type Type: fmt::Display;
/// Returns the cardinality of the field value.
fn number(&self) -> Self::Number;
/// Returns a mutable reference to the number.
fn number_mut(&mut self) -> &mut Self::Number;
/// Returns the type of the field value.
fn ty(&self) -> Self::Type;
/// Returns a mutable reference to the type.
fn type_mut(&mut self) -> &mut Self::Type;
}
/// An inner VCF header map value with a description field.
pub trait Described: Inner {
/// Returns the description.
fn description(&self) -> &str;
/// Returns a mutable reference to the description.
fn description_mut(&mut self) -> &mut String;
}
/// An inner VCF header map value with an IDX field.
pub trait Indexed: Inner {
/// Returns the index of the ID in the dictionary of strings.
fn idx(&self) -> Option<usize>;
/// Returns a mutable reference to the index.
fn idx_mut(&mut self) -> &mut Option<usize>;
}
/// A VCF header map value.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Map<I>
where
I: Inner,
{
pub(crate) inner: I,
pub(crate) other_fields: OtherFields<I::StandardTag>,
}
impl<I> Map<I>
where
I: Inner,
{
/// Creates a VCF header map value builder.
pub fn builder() -> Builder<I> {
Builder::default()
}
/// Returns the nonstandard fields in the map.
pub fn other_fields(&self) -> &OtherFields<I::StandardTag> {
&self.other_fields
}
/// Returns a mutable reference to the nonstandard fields in the map.
///
/// # Examples
///
/// ```
/// use noodles_vcf::header::record::value::{map::Filter, Map};
///
/// let tag = match "noodles".parse() {
/// Ok(tag) => tag,
/// Err(_) => unreachable!(),
/// };
///
/// let mut map = Map::<Filter>::pass();
/// map.other_fields_mut().insert(tag, String::from("vcf"));
/// ```
pub fn other_fields_mut(&mut self) -> &mut OtherFields<I::StandardTag> {
&mut self.other_fields
}
}
impl<I> Default for Map<I>
where
I: Inner + Default,
{
fn default() -> Self {
Self {
inner: I::default(),
other_fields: OtherFields::new(),
}
}
}
impl<I> Map<I>
where
I: Typed,
{
/// Returns the cardinality of the field value.
pub fn number(&self) -> I::Number {
self.inner.number()
}
/// Returns a mutable reference to the number.
pub fn number_mut(&mut self) -> &mut I::Number {
self.inner.number_mut()
}
/// Returns the type of the field value.
pub fn ty(&self) -> I::Type {
self.inner.ty()
}
/// Returns a mutable reference to the type.
pub fn type_mut(&mut self) -> &mut I::Type {
self.inner.type_mut()
}
}
impl<I> Map<I>
where
I: Described,
{
/// Returns the description.
pub fn description(&self) -> &str {
self.inner.description()
}
/// Returns a mutable reference to the description.
pub fn description_mut(&mut self) -> &mut String {
self.inner.description_mut()
}
}
impl<I> Map<I>
where
I: Indexed,
{
/// Returns the index of the ID in the dictionary of strings.
pub fn idx(&self) -> Option<usize> {
self.inner.idx()
}
/// Returns a mutable reference to the index.
pub fn idx_mut(&mut self) -> &mut Option<usize> {
self.inner.idx_mut()
}
}