Class: Google::Apis::GenomicsV1::Annotation

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

Overview

An annotation describes a region of reference genome. The value of an annotation may be one of several canonical types, supplemented by arbitrary info tags. An annotation is not inherently associated with a specific sample or individual (though a client could choose to use annotations in this way). Example canonical annotation types are GENE and VARIANT.

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) ⇒ Annotation

Returns a new instance of Annotation



1487
1488
1489
# File 'generated/google/apis/genomics_v1/classes.rb', line 1487

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

Instance Attribute Details

#annotation_set_idString

The annotation set to which this annotation belongs. Corresponds to the JSON property annotationSetId

Returns:

  • (String)


1425
1426
1427
# File 'generated/google/apis/genomics_v1/classes.rb', line 1425

def annotation_set_id
  @annotation_set_id
end

#endFixnum

The end position of the range on the reference, 0-based exclusive. Corresponds to the JSON property end

Returns:

  • (Fixnum)


1479
1480
1481
# File 'generated/google/apis/genomics_v1/classes.rb', line 1479

def end
  @end
end

#idString

The server-generated annotation ID, unique across all annotations. Corresponds to the JSON property id

Returns:

  • (String)


1448
1449
1450
# File 'generated/google/apis/genomics_v1/classes.rb', line 1448

def id
  @id
end

#infoHash<String,Array<Object>>

A map of additional read alignment information. This must be of the form map (string key mapping to a list of string values). Corresponds to the JSON property info

Returns:

  • (Hash<String,Array<Object>>)


1474
1475
1476
# File 'generated/google/apis/genomics_v1/classes.rb', line 1474

def info
  @info
end

#nameString

The display name of this annotation. Corresponds to the JSON property name

Returns:

  • (String)


1430
1431
1432
# File 'generated/google/apis/genomics_v1/classes.rb', line 1430

def name
  @name
end

#reference_idString

The ID of the Google Genomics reference associated with this range. Corresponds to the JSON property referenceId

Returns:

  • (String)


1443
1444
1445
# File 'generated/google/apis/genomics_v1/classes.rb', line 1443

def reference_id
  @reference_id
end

#reference_nameString

The display name corresponding to the reference specified by referenceId, for example chr1, 1, or chrX. Corresponds to the JSON property referenceName

Returns:

  • (String)


1462
1463
1464
# File 'generated/google/apis/genomics_v1/classes.rb', line 1462

def reference_name
  @reference_name
end

#reverse_strandBoolean Also known as: reverse_strand?

Whether this range refers to the reverse strand, as opposed to the forward strand. Note that regardless of this field, the start/end position of the range always refer to the forward strand. Corresponds to the JSON property reverseStrand

Returns:

  • (Boolean)


1455
1456
1457
# File 'generated/google/apis/genomics_v1/classes.rb', line 1455

def reverse_strand
  @reverse_strand
end

#startFixnum

The start position of the range on the reference, 0-based inclusive. Corresponds to the JSON property start

Returns:

  • (Fixnum)


1420
1421
1422
# File 'generated/google/apis/genomics_v1/classes.rb', line 1420

def start
  @start
end

#transcriptGoogle::Apis::GenomicsV1::Transcript

A transcript represents the assertion that a particular region of the reference genome may be transcribed as RNA. Corresponds to the JSON property transcript



1485
1486
1487
# File 'generated/google/apis/genomics_v1/classes.rb', line 1485

def transcript
  @transcript
end

#typeString

The data type for this annotation. Must match the containing annotation set's type. Corresponds to the JSON property type

Returns:

  • (String)


1468
1469
1470
# File 'generated/google/apis/genomics_v1/classes.rb', line 1468

def type
  @type
end

#variantGoogle::Apis::GenomicsV1::VariantAnnotation

A variant annotation, which describes the effect of a variant on the genome, the coding sequence, and/or higher level consequences at the organism level e.g. pathogenicity. This field is only set for annotations of type VARIANT. Corresponds to the JSON property variant



1438
1439
1440
# File 'generated/google/apis/genomics_v1/classes.rb', line 1438

def variant
  @variant
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
# File 'generated/google/apis/genomics_v1/classes.rb', line 1492

def update!(**args)
  @start = args[:start] if args.key?(:start)
  @annotation_set_id = args[:annotation_set_id] if args.key?(:annotation_set_id)
  @name = args[:name] if args.key?(:name)
  @variant = args[:variant] if args.key?(:variant)
  @reference_id = args[:reference_id] if args.key?(:reference_id)
  @id = args[:id] if args.key?(:id)
  @reverse_strand = args[:reverse_strand] if args.key?(:reverse_strand)
  @reference_name = args[:reference_name] if args.key?(:reference_name)
  @type = args[:type] if args.key?(:type)
  @info = args[:info] if args.key?(:info)
  @end = args[:end] if args.key?(:end)
  @transcript = args[:transcript] if args.key?(:transcript)
end