Struct pilercr_parser::Array
source · pub struct Array<'a> {
pub accession: &'a str,
pub order: usize,
pub start: usize,
pub end: usize,
pub consensus_repeat_sequence: &'a str,
pub repeat_spacers: Vec<RepeatSpacer<'a>>,
}Expand description
A single CRISPR array.
Fields§
§accession: &'a strAccession of the contig/genome.
order: usizeThe Nth CRISPR array in the PILER-CR output.
start: usizeZero-indexed, inclusive start coordinate.
end: usizeZero-indexed, exclusive end coordinate.
consensus_repeat_sequence: &'a strThe consensus repeat sequence for this array. May include gaps.
repeat_spacers: Vec<RepeatSpacer<'a>>The repeat-spacers in this array.