Struct google_genomics1::CallSet[][src]

pub struct CallSet {
    pub info: Option<HashMap<String, Vec<String>>>,
    pub variant_set_ids: Option<Vec<String>>,
    pub name: Option<String>,
    pub created: Option<String>,
    pub sample_id: Option<String>,
    pub id: Option<String>,
}

A call set is a collection of variant calls, typically for one sample. It belongs to a variant set.

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 call set information. This must be of the form map<string, string[]> (string key mapping to a list of string values).

The IDs of the variant sets this call set belongs to. This field must have exactly length one, as a call set belongs to a single variant set. This field is repeated for compatibility with the GA4GH 0.5.1 API.

The call set name.

The date this call set was created in milliseconds from the epoch.

The sample ID this call set corresponds to.

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

Trait Implementations

impl Default for CallSet
[src]

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

impl Clone for CallSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CallSet
[src]

Formats the value using the given formatter. Read more

impl RequestValue for CallSet
[src]

impl Resource for CallSet
[src]

impl ResponseResult for CallSet
[src]

Auto Trait Implementations

impl Send for CallSet

impl Sync for CallSet