Class: Google::Apis::GenomicsV1::VariantAnnotation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VariantAnnotation

Returns a new instance of VariantAnnotation.



328
329
330
# File 'generated/google/apis/genomics_v1/classes.rb', line 328

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alternate_basesString

The alternate allele for this variant. If multiple alternate alleles exist at this location, create a separate variant for each one, as they may represent distinct conditions. Corresponds to the JSON property alternateBases

Returns:

  • (String)


301
302
303
# File 'generated/google/apis/genomics_v1/classes.rb', line 301

def alternate_bases
  @alternate_bases
end

#clinical_significanceString

Describes the clinical significance of a variant. It is adapted from the ClinVar controlled vocabulary for clinical significance described at: http:// www.ncbi.nlm.nih.gov/clinvar/docs/clinsig/ Corresponds to the JSON property clinicalSignificance

Returns:

  • (String)


326
327
328
# File 'generated/google/apis/genomics_v1/classes.rb', line 326

def clinical_significance
  @clinical_significance
end

#conditionsArray<Google::Apis::GenomicsV1::ClinicalCondition>

The set of conditions associated with this variant. A condition describes the way a variant influences human health. Corresponds to the JSON property conditions



319
320
321
# File 'generated/google/apis/genomics_v1/classes.rb', line 319

def conditions
  @conditions
end

#effectString

Effect of the variant on the coding sequence. Corresponds to the JSON property effect

Returns:

  • (String)


294
295
296
# File 'generated/google/apis/genomics_v1/classes.rb', line 294

def effect
  @effect
end

#gene_idString

Google annotation ID of the gene affected by this variant. This should be provided when the variant is created. Corresponds to the JSON property geneId

Returns:

  • (String)


307
308
309
# File 'generated/google/apis/genomics_v1/classes.rb', line 307

def gene_id
  @gene_id
end

#transcript_idsArray<String>

Google annotation IDs of the transcripts affected by this variant. These should be provided when the variant is created. Corresponds to the JSON property transcriptIds

Returns:

  • (Array<String>)


313
314
315
# File 'generated/google/apis/genomics_v1/classes.rb', line 313

def transcript_ids
  @transcript_ids
end

#typeString

Type has been adapted from ClinVar's list of variant types. Corresponds to the JSON property type

Returns:

  • (String)


289
290
291
# File 'generated/google/apis/genomics_v1/classes.rb', line 289

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



333
334
335
336
337
338
339
340
341
# File 'generated/google/apis/genomics_v1/classes.rb', line 333

def update!(**args)
  @type = args[:type] if args.key?(:type)
  @effect = args[:effect] if args.key?(:effect)
  @alternate_bases = args[:alternate_bases] if args.key?(:alternate_bases)
  @gene_id = args[:gene_id] if args.key?(:gene_id)
  @transcript_ids = args[:transcript_ids] if args.key?(:transcript_ids)
  @conditions = args[:conditions] if args.key?(:conditions)
  @clinical_significance = args[:clinical_significance] if args.key?(:clinical_significance)
end