Struct google_genomics1::SearchVariantsRequest[][src]

pub struct SearchVariantsRequest {
    pub end: Option<String>,
    pub page_size: Option<i32>,
    pub page_token: Option<String>,
    pub max_calls: Option<i32>,
    pub start: Option<String>,
    pub variant_set_ids: Option<Vec<String>>,
    pub variant_name: Option<String>,
    pub reference_name: Option<String>,
    pub call_set_ids: Option<Vec<String>>,
}

The variant search request.

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

The end of the window, 0-based exclusive. If unspecified or 0, defaults to the length of the reference.

The maximum number of variants to return in a single page. If unspecified, defaults to 5000. The maximum value is 10000.

The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.

The maximum number of calls to return in a single page. Note that this limit may be exceeded in the event that a matching variant contains more calls than the requested maximum. If unspecified, defaults to 5000. The maximum value is 10000.

The beginning of the window (0-based, inclusive) for which overlapping variants should be returned. If unspecified, defaults to 0.

At most one variant set ID must be provided. Only variants from this variant set will be returned. If omitted, a call set id must be included in the request.

Only return variants which have exactly this name.

Required. Only return variants in this reference sequence.

Only return variant calls which belong to call sets with these ids. Leaving this blank returns all variant calls. If a variant has no calls belonging to any of these call sets, it won't be returned at all.

Trait Implementations

impl Default for SearchVariantsRequest
[src]

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

impl Clone for SearchVariantsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SearchVariantsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for SearchVariantsRequest
[src]

Auto Trait Implementations