noodles_vcf/header/
record.rspub mod key;
pub mod value;
pub use self::{key::Key, value::Value};
use std::str::FromStr;
use self::value::{
map::{AlternativeAllele, Contig, Filter, Format, Info},
Map,
};
use super::{parser::record::ParseError, FileFormat};
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum Record {
AlternativeAllele(String, Map<AlternativeAllele>),
Contig(String, Map<Contig>),
FileFormat(FileFormat),
Filter(String, Map<Filter>),
Format(String, Map<Format>),
Info(String, Map<Info>),
Other(key::Other, Value),
}
impl FromStr for Record {
type Err = ParseError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Self::try_from((FileFormat::default(), s))
}
}
impl TryFrom<(FileFormat, &str)> for Record {
type Error = ParseError;
fn try_from((file_format, s): (FileFormat, &str)) -> Result<Self, Self::Error> {
super::parser::parse_record(s.as_bytes(), file_format)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_from_str() -> Result<(), ParseError> {
let line = "##fileformat=VCFv4.3";
assert_eq!(line.parse(), Ok(Record::FileFormat(FileFormat::new(4, 3))));
let line =
r#"##INFO=<ID=NS,Number=1,Type=Integer,Description="Number of samples with data">"#;
assert!(matches!(line.parse(), Ok(Record::Info(..))));
assert!("".parse::<Record>().is_err());
Ok(())
}
}