Struct google_genomics1::ImportReadGroupSetsRequest[][src]

pub struct ImportReadGroupSetsRequest {
    pub reference_set_id: Option<String>,
    pub source_uris: Option<Vec<String>>,
    pub partition_strategy: Option<String>,
    pub dataset_id: Option<String>,
}

The read group set 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

The reference set to which the imported read group sets are aligned to, if any. The reference names of this reference set must be a superset of those found in the imported file headers. If no reference set id is provided, a best effort is made to associate with a matching reference set.

A list of URIs pointing at BAM files in Google Cloud Storage. Those URIs can include wildcards (*), but do not add or remove matching files before import has completed.

Note that Google Cloud Storage object listing is only eventually consistent: files added may be not be immediately visible to everyone. Thus, if using a wildcard it is preferable not to start the import immediately after the files are created.

The partition strategy describes how read groups are partitioned into read group sets.

Required. The ID of the dataset these read group sets will belong to. The caller must have WRITE permissions to this dataset.

Trait Implementations

impl Default for ImportReadGroupSetsRequest
[src]

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

impl Clone for ImportReadGroupSetsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ImportReadGroupSetsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ImportReadGroupSetsRequest
[src]

Auto Trait Implementations