Struct google_genomics1::AnnotationSet[][src]

pub struct AnnotationSet {
    pub info: Option<HashMap<String, Vec<String>>>,
    pub name: Option<String>,
    pub source_uri: Option<String>,
    pub reference_set_id: Option<String>,
    pub type_: Option<String>,
    pub id: Option<String>,
    pub dataset_id: Option<String>,
}

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'.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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).

The display name for this annotation set.

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

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

The type of annotations contained within this set.

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

The dataset to which this annotation set belongs.

Trait Implementations

impl Default for AnnotationSet
[src]

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

impl Clone for AnnotationSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AnnotationSet
[src]

Formats the value using the given formatter. Read more

impl RequestValue for AnnotationSet
[src]

impl Resource for AnnotationSet
[src]

impl ResponseResult for AnnotationSet
[src]

Auto Trait Implementations