class Google::Apis::GenomicsV1::ClinicalCondition

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::GenomicsV1::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_v1/classes.rb, line 369
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_v1/classes.rb, line 374
def update!(**args)
  @names = args[:names] if args.key?(:names)
  @external_ids = args[:external_ids] if args.key?(:external_ids)
  @concept_id = args[:concept_id] if args.key?(:concept_id)
  @omim_id = args[:omim_id] if args.key?(:omim_id)
end