Struct minced_parser::Contig
source · pub struct Contig<'a> {
pub accession: &'a str,
pub bp: usize,
pub arrays: Vec<Array<'a>>,
}Expand description
Represents all of the CRISPR arrays in a single contig or genome.
Fields§
§accession: &'a strAccession of the contig/genome.
bp: usizeLength of the contig/genome in base pairs.
arrays: Vec<Array<'a>>The CRISPR arrays in this contig/genome.