pub struct Hit {
pub qseqid: String,
pub pident: f32,
pub evalue: f64,
pub bitscore: f32,
pub qcov: f32,
pub stitle: String,
pub sstart: i32,
pub send: i32,
}Expand description
A single alignment hit, normalized across the three supported aligners plus the pre-computed TSV path.
Coverage and identity are always on the 0–100 scale, regardless of whether the source tool reported them as fractions or percentages.
Fields§
§qseqid: String§pident: f32§evalue: f64§bitscore: f32§qcov: f32§stitle: String§sstart: i32§send: i32Trait Implementations§
Source§impl<'de> Deserialize<'de> for Hit
impl<'de> Deserialize<'de> for Hit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Hit
Auto Trait Implementations§
impl Freeze for Hit
impl RefUnwindSafe for Hit
impl Send for Hit
impl Sync for Hit
impl Unpin for Hit
impl UnsafeUnpin for Hit
impl UnwindSafe for Hit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more