Struct gapi_grpc::google::genomics::v1::Transcript[][src]

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

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

Fields

gene_id: String

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

exons: Vec<Exon>

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][google.genomics.v1.Transcript.coding_sequence] correspond to coding DNA sequence.

Exons are ordered by start position and may not overlap.

coding_sequence: Option<CodingSequence>

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][google.genomics.v1.Transcript.exons], if any. If there are any [exons][google.genomics.v1.Transcript.exons], the [codingSequence][google.genomics.v1.Transcript.coding_sequence] 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][google.genomics.v1.Transcript.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.

Trait Implementations

impl Clone for Transcript[src]

impl Debug for Transcript[src]

impl Default for Transcript[src]

impl Message for Transcript[src]

impl PartialEq<Transcript> for Transcript[src]

impl StructuralPartialEq for Transcript[src]

Auto Trait Implementations

impl RefUnwindSafe for Transcript

impl Send for Transcript

impl Sync for Transcript

impl Unpin for Transcript

impl UnwindSafe for Transcript

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]