Struct google_genomics1::Exon[][src]

pub struct Exon {
    pub start: Option<String>,
    pub frame: Option<i32>,
    pub end: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

The start position of the exon on this annotation's reference sequence, 0-based inclusive. Note that this is relative to the reference start, and not the containing annotation start.

The frame of this exon. Contains a value of 0, 1, or 2, which indicates the offset of the first coding base of the exon within the reading frame of the coding DNA sequence, if any. This field is dependent on the strandedness of this annotation (see Annotation.reverse_strand). For forward stranded annotations, this offset is relative to the exon.start. For reverse strand annotations, this offset is relative to the exon.end - 1.

Unset if this exon does not intersect the coding sequence. Upon creation of a transcript, the frame must be populated for all or none of the coding exons.

The end position of the exon on this annotation's reference sequence, 0-based exclusive. Note that this is relative to the reference start, and not the containing annotation start.

Trait Implementations

impl Default for Exon
[src]

Returns the "default value" for a type. Read more

impl Clone for Exon
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Exon
[src]

Formats the value using the given formatter. Read more

impl Part for Exon
[src]

Auto Trait Implementations

impl Send for Exon

impl Sync for Exon