Struct minced_parser::Array
source · pub struct Array<'a> {
pub order: usize,
pub start: usize,
pub end: usize,
pub repeat_spacers: Vec<RepeatSpacer<'a>>,
}Expand description
A single CRISPR array.
Fields§
§order: usizeThe nth CRISPR array in this genome/contig.
start: usizeZero-indexed inclusive start coordinate.
end: usizeZero-indexed exclusive end coordinate.
repeat_spacers: Vec<RepeatSpacer<'a>>All of the repeat-spacer pairs in this CRISPR array.