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

pub struct CallSet {
    pub id: String,
    pub name: String,
    pub sample_id: String,
    pub variant_set_ids: Vec<String>,
    pub created: i64,
    pub info: HashMap<String, ListValue>,
}
[]

A call set is a collection of variant calls, typically for one sample. It belongs to a variant set.

For more genomics resource definitions, see Fundamentals of Google Genomics

Fields

id: String
[]

The server-generated call set ID, unique across all call sets.

name: String
[]

The call set name.

sample_id: String
[]

The sample ID this call set corresponds to.

variant_set_ids: Vec<String>
[]

The IDs of the variant sets this call set belongs to. This field must have exactly length one, as a call set belongs to a single variant set. This field is repeated for compatibility with the GA4GH 0.5.1 API.

created: i64
[]

The date this call set was created in milliseconds from the epoch.

info: HashMap<String, ListValue>
[]

A map of additional call set information. This must be of the form map<string, string[]> (string key mapping to a list of string values).

Trait Implementations

impl Clone for CallSet[src][+]

impl Debug for CallSet[src][+]

impl Default for CallSet[src][+]

impl Message for CallSet[src][+]

impl PartialEq<CallSet> for CallSet[src][+]

impl StructuralPartialEq for CallSet[src]

Auto Trait Implementations

impl RefUnwindSafe for CallSet

impl Send for CallSet

impl Sync for CallSet

impl Unpin for CallSet

impl UnwindSafe for CallSet

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][+]