Struct google_genomics1::ImportVariantsRequest [] [src]

pub struct ImportVariantsRequest {
    pub variant_set_id: Option<String>,
    pub format: Option<String>,
    pub source_uris: Option<Vec<String>>,
    pub info_merge_config: Option<HashMap<String, String>>,
    pub normalize_reference_names: Option<bool>,
}

The variant data import 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

Required. The variant set to which variant data should be imported.

The format of the variant data being imported. If unspecified, defaults to to VCF.

A list of URIs referencing variant files in Google Cloud Storage. URIs can include wildcards as described here. Note that recursive wildcards ('**') are not supported.

A mapping between info field keys and the InfoMergeOperations to be performed on them. This is plumbed down to the MergeVariantRequests generated by the resulting import job.

Convert reference names to the canonical representation. hg19 haploytypes (those reference names containing "_hap") are not modified in any way. All other reference names are modified according to the following rules: The reference name is capitalized. The "chr" prefix is dropped for all autosomes and sex chromsomes. For example "chr17" becomes "17" and "chrX" becomes "X". All mitochondrial chromosomes ("chrM", "chrMT", etc) become "MT".

Trait Implementations

impl Debug for ImportVariantsRequest
[src]

Formats the value using the given formatter.

impl Clone for ImportVariantsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ImportVariantsRequest
[src]

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

impl RequestValue for ImportVariantsRequest
[src]