stratiphy 0.1.5

Phenotype-driven identification of disease subgroups
Documentation
// This file is @generated by prost-build.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct PhenotypicFeature {
    #[prost(string, tag = "1")]
    pub identifier: ::prost::alloc::string::String,
    #[prost(bool, tag = "2")]
    pub is_excluded: bool,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct SampleLabels {
    #[prost(string, tag = "1")]
    pub label: ::prost::alloc::string::String,
    #[prost(string, optional, tag = "2")]
    pub meta_label: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Sample {
    #[prost(message, optional, tag = "1")]
    pub labels: ::core::option::Option<SampleLabels>,
    #[prost(message, repeated, tag = "2")]
    pub phenotypic_features: ::prost::alloc::vec::Vec<PhenotypicFeature>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Cohort {
    #[prost(message, repeated, tag = "1")]
    pub members: ::prost::alloc::vec::Vec<Sample>,
}