illumina_coordinates

Struct SequenceIdentifier

Source
pub struct SequenceIdentifier {
Show 13 fields pub sequencer_id: String, pub run_count: u16, pub flow_cell_id: String, pub lane: u8, pub side: u8, pub swath: u8, pub tile: u8, pub x: u16, pub y: u16, pub read: u8, pub is_filtered: bool, pub control_number: u8, pub sample: Sample,
}
Expand description

A parsed sequence identifier

Fields§

§sequencer_id: String

ID of the sequencing machine

§run_count: u16

The number of sequencing runs this machine has performed

§flow_cell_id: String

ID of the flow cell, printed on the side of the glass slide

§lane: u8

Lane number. For MiSeqs, this is always 1

§side: u8

The near or far side off the flow cell surface

§swath: u8

The row within a lane, if wide enough. For MiSeqs, this is always 1

§tile: u8

The positional order of the region where the cluster is located

§x: u16

The x-coordinate of the cluster

§y: u16

The y-coordinate of the cluster

§read: u8

The read number

§is_filtered: bool

Whether the read was filtered for low quality (Y=filtered)

§control_number: u8

Indicates the type of control, 0 = not a control read

§sample: Sample

Number from sample sheet, or the sequence if the read is in Undetermined Reads

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.