//! Input sites.
pubmodreader;pubusereader::Reader;usecrate::spectrum::{project::Projected, Count};/// An input site.
////// This type results from reader genotypes from a [`Reader`] with its particular configuration.
/// See there for details.
pubenumSite<'a> {/// A standard count with no projection.
Standard(&'a Count),/// A projected count.
Projected(Projected<'a>),/// A site with insufficient data.
InsufficientData,}