class Google::Apis::GenomicsV1beta2::VariantAnnotationCondition

Attributes

concept_id[RW]

The MedGen concept id associated with this gene. Search for these IDs at http:/ /www.ncbi.nlm.nih.gov/medgen/ Corresponds to the JSON property `conceptId` @return [String]

external_ids[RW]

The set of external IDs for this condition. Corresponds to the JSON property `externalIds` @return [Array<Google::Apis::GenomicsV1beta2::ExternalId>]

names[RW]

A set of names for the condition. Corresponds to the JSON property `names` @return [Array<String>]

omim_id[RW]

The OMIM id for this condition. Search for these IDs at omim.org/ Corresponds to the JSON property `omimId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 3235
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/genomics_v1beta2/classes.rb, line 3240
def update!(**args)
  @concept_id = args[:concept_id] unless args[:concept_id].nil?
  @external_ids = args[:external_ids] unless args[:external_ids].nil?
  @names = args[:names] unless args[:names].nil?
  @omim_id = args[:omim_id] unless args[:omim_id].nil?
end