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
//! VCF record genotype value allele.

pub mod phasing;

pub use self::phasing::Phasing;

use std::{error, fmt, num, str::FromStr};

const MISSING_POSITION: &str = ".";

/// A VCF record genotype value allele.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Allele {
    position: Option<usize>,
    phasing: Option<Phasing>,
}

impl Allele {
    /// Creates a VCF record genotype value allele.
    ///
    /// # Examples
    ///
    /// ```
    /// use noodles_vcf::record::genotype::field::value::genotype::Allele;
    /// let allele = Allele::new(Some(0), None);
    /// ```
    pub fn new(position: Option<usize>, phasing: Option<Phasing>) -> Self {
        Self { position, phasing }
    }
}

/// An error returned when a raw VCF record genotype value allele fails to parse.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ParseError {
    /// The input is empty.
    Empty,
    /// The position is invalid.
    InvalidPosition(num::ParseIntError),
    /// The phasing is invalid.
    InvalidPhasing(phasing::ParseError),
}

impl error::Error for ParseError {}

impl fmt::Display for ParseError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Empty => f.write_str("empty input"),
            Self::InvalidPosition(e) => write!(f, "invalid position: {}", e),
            Self::InvalidPhasing(e) => write!(f, "invalid phasing: {}", e),
        }
    }
}

impl FromStr for Allele {
    type Err = ParseError;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if s.is_empty() {
            return Err(ParseError::Empty);
        }

        match s[..1].parse() {
            Ok(phasing) => {
                let position = parse_position(&s[1..])?;
                Ok(Allele::new(position, Some(phasing)))
            }
            Err(e) => {
                if let Ok(position) = parse_position(s) {
                    Ok(Allele::new(position, None))
                } else {
                    Err(ParseError::InvalidPhasing(e))
                }
            }
        }
    }
}

fn parse_position(s: &str) -> Result<Option<usize>, ParseError> {
    if s == MISSING_POSITION {
        Ok(None)
    } else {
        s.parse().map(Some).map_err(ParseError::InvalidPosition)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_from_str() {
        assert_eq!(".".parse(), Ok(Allele::new(None, None)));
        assert_eq!("0".parse(), Ok(Allele::new(Some(0), None)));
        assert_eq!("/.".parse(), Ok(Allele::new(None, Some(Phasing::Unphased))));
        assert_eq!(
            "/0".parse(),
            Ok(Allele::new(Some(0), Some(Phasing::Unphased)))
        );
        assert_eq!(
            "/13".parse(),
            Ok(Allele::new(Some(13), Some(Phasing::Unphased)))
        );

        assert_eq!("".parse::<Allele>(), Err(ParseError::Empty));
        assert!(matches!(
            "/ndls".parse::<Allele>(),
            Err(ParseError::InvalidPosition(_))
        ));
        assert!(matches!(
            ":0".parse::<Allele>(),
            Err(ParseError::InvalidPhasing(_))
        ));
    }
}