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

pub struct Variant {
    pub variant_set_id: String,
    pub id: String,
    pub names: Vec<String>,
    pub created: i64,
    pub reference_name: String,
    pub start: i64,
    pub end: i64,
    pub reference_bases: String,
    pub alternate_bases: Vec<String>,
    pub quality: f64,
    pub filter: Vec<String>,
    pub info: HashMap<String, ListValue>,
    pub calls: Vec<VariantCall>,
}

A variant represents a change in DNA sequence relative to a reference sequence. For example, a variant could represent a SNP or an insertion. Variants belong to a variant set.

For more genomics resource definitions, see Fundamentals of Google Genomics

Each of the calls on a variant represent a determination of genotype with respect to that variant. For example, a call might assign probability of 0.32 to the occurrence of a SNP named rs1234 in a sample named NA12345. A call belongs to a call set, which contains related calls typically from one sample.

Fields

variant_set_id: String

The ID of the variant set this variant belongs to.

id: String

The server-generated variant ID, unique across all variants.

names: Vec<String>

Names for the variant, for example a RefSNP ID.

created: i64

The date this variant was created, in milliseconds from the epoch.

reference_name: String

The reference on which this variant occurs. (such as chr20 or X)

start: i64

The position at which this variant occurs (0-based). This corresponds to the first base of the string of reference bases.

end: i64

The end position (0-based) of this variant. This corresponds to the first base after the last base in the reference allele. So, the length of the reference allele is (end - start). This is useful for variants that don’t explicitly give alternate bases, for example large deletions.

reference_bases: String

The reference bases for this variant. They start at the given position.

alternate_bases: Vec<String>

The bases that appear instead of the reference bases.

quality: f64

A measure of how likely this variant is to be real. A higher value is better.

filter: Vec<String>

A list of filters (normally quality filters) this variant has failed. PASS indicates this variant has passed all filters.

info: HashMap<String, ListValue>

A map of additional variant information. This must be of the form map<string, string[]> (string key mapping to a list of string values).

calls: Vec<VariantCall>

The variant calls for this particular variant. Each one represents the determination of genotype with respect to this variant.

Trait Implementations

impl Clone for Variant[src]

impl Debug for Variant[src]

impl Default for Variant[src]

impl Message for Variant[src]

impl PartialEq<Variant> for Variant[src]

impl StructuralPartialEq for Variant[src]

Auto Trait Implementations

impl RefUnwindSafe for Variant

impl Send for Variant

impl Sync for Variant

impl Unpin for Variant

impl UnwindSafe for Variant

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]