Struct gapi_grpc::google::genomics::v1::ReadGroupSet[][src]

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

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.

For more genomics resource definitions, see Fundamentals of Google Genomics

Fields

id: String

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

dataset_id: String

The dataset to which this read group set belongs.

reference_set_id: String

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

name: String

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

filename: String

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

read_groups: Vec<ReadGroup>

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

info: HashMap<String, ListValue>

A map of additional read group set information.

Trait Implementations

impl Clone for ReadGroupSet[src]

impl Debug for ReadGroupSet[src]

impl Default for ReadGroupSet[src]

impl Message for ReadGroupSet[src]

impl PartialEq<ReadGroupSet> for ReadGroupSet[src]

impl StructuralPartialEq for ReadGroupSet[src]

Auto Trait Implementations

impl RefUnwindSafe for ReadGroupSet

impl Send for ReadGroupSet

impl Sync for ReadGroupSet

impl Unpin for ReadGroupSet

impl UnwindSafe for ReadGroupSet

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]