Struct google_genomics1::Transcript[][src]

pub struct Transcript {
    pub coding_sequence: Option<CodingSequence>,
    pub exons: Option<Vec<Exon>>,
    pub gene_id: Option<String>,
}

A transcript represents the assertion that a particular region of the reference genome may be transcribed as RNA.

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

Fields

The range of the coding sequence for this transcript, if any. To determine the exact ranges of coding sequence, intersect this range with those of the exons, if any. If there are any exons, the codingSequence must start and end within them.

Note that in some cases, the reference genome will not exactly match the observed mRNA transcript e.g. due to variance in the source genome from reference. In these cases, exon.frame will not necessarily match the expected reference reading frame and coding exon reference bases cannot necessarily be concatenated to produce the original transcript mRNA.

The exons that compose this transcript. This field should be unset for genomes where transcript splicing does not occur, for example prokaryotes.

Introns are regions of the transcript that are not included in the spliced RNA product. Though not explicitly modeled here, intron ranges can be deduced; all regions of this transcript that are not exons are introns.

Exonic sequences do not necessarily code for a translational product (amino acids). Only the regions of exons bounded by the codingSequence correspond to coding DNA sequence.

Exons are ordered by start position and may not overlap.

The annotation ID of the gene from which this transcript is transcribed.

Trait Implementations

impl Default for Transcript
[src]

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

impl Clone for Transcript
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Transcript
[src]

Formats the value using the given formatter. Read more

impl Part for Transcript
[src]

Auto Trait Implementations

impl Send for Transcript

impl Sync for Transcript