variant_collection.rs 169 B

123456789
  1. use crate::collection::vcf::Vcf;
  2. use super::variant::VcfVariant;
  3. #[derive(Debug)]
  4. pub struct VariantCollection {
  5. pub variants: Vec<VcfVariant>,
  6. pub vcf: Vcf
  7. }