Struct google_genomics1::ReadGroupSet[][src]

pub struct ReadGroupSet {
    pub info: Option<HashMap<String, Vec<String>>>,
    pub dataset_id: Option<String>,
    pub name: Option<String>,
    pub reference_set_id: Option<String>,
    pub id: Option<String>,
    pub read_groups: Option<Vec<ReadGroup>>,
    pub filename: Option<String>,
}

A read group set is a logical collection of read groups, which are collections of reads produced by a sequencer. A read group set typically models reads corresponding to one sample, sequenced one way, and aligned one way.

  • A read group set belongs to one dataset.
  • A read group belongs to one read group set.
  • A read belongs to one read group.

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 group set information.

The dataset to which this read group set belongs.

The read group set name. By default this will be initialized to the sample name of the sequenced data contained in this set.

The reference set to which the reads in this read group set are aligned.

The server-generated read group set ID, unique for all read group sets.

The read groups in this set. There are typically 1-10 read groups in a read group set.

The filename of the original source file for this read group set, if any.

Trait Implementations

impl Default for ReadGroupSet
[src]

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

impl Clone for ReadGroupSet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReadGroupSet
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ReadGroupSet
[src]

impl Resource for ReadGroupSet
[src]

impl ResponseResult for ReadGroupSet
[src]

Auto Trait Implementations