Struct illumina_coordinates::SequenceIdentifier[][src]

pub struct SequenceIdentifier {
    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,
}

A parsed sequence identifier

Fields

ID of the sequencing machine

The number of sequencing runs this machine has performed

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

Lane number. For MiSeqs, this is always 1

The near or far side off the flow cell surface

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

The positional order of the region where the cluster is located

The x-coordinate of the cluster

The y-coordinate of the cluster

The read number

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

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

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

Auto Trait Implementations