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

pub struct AnnotationSet {
    pub id: String,
    pub dataset_id: String,
    pub reference_set_id: String,
    pub name: String,
    pub source_uri: String,
    pub type: i32,
    pub info: HashMap<String, ListValue>,
}

An annotation set is a logical grouping of annotations that share consistent type information and provenance. Examples of annotation sets include ‘all genes from refseq’, and ‘all variant annotations from ClinVar’.

Fields

id: String

The server-generated annotation set ID, unique across all annotation sets.

dataset_id: String

The dataset to which this annotation set belongs.

reference_set_id: String

The ID of the reference set that defines the coordinate space for this set’s annotations.

name: String

The display name for this annotation set.

source_uri: String

The source URI describing the file from which this annotation set was generated, if any.

type: i32

The type of annotations contained within this set.

info: HashMap<String, ListValue>

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

Implementations

impl AnnotationSet[src]

pub fn type(&self) -> AnnotationType[src]

Returns the enum value of type, or the default if the field is set to an invalid enum value.

pub fn set_type(&mut self, value: AnnotationType)[src]

Sets type to the provided enum value.

Trait Implementations

impl Clone for AnnotationSet[src]

impl Debug for AnnotationSet[src]

impl Default for AnnotationSet[src]

impl Message for AnnotationSet[src]

impl PartialEq<AnnotationSet> for AnnotationSet[src]

impl StructuralPartialEq for AnnotationSet[src]

Auto Trait Implementations

impl RefUnwindSafe for AnnotationSet

impl Send for AnnotationSet

impl Sync for AnnotationSet

impl Unpin for AnnotationSet

impl UnwindSafe for AnnotationSet

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]