use crate::collection::vcf::Vcf; use super::variant::VcfVariant; #[derive(Debug)] pub struct VariantCollection { pub variants: Vec<VcfVariant>, pub vcf: Vcf }