Class: Google::Apis::GenomicsV1::CodingSequence

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

Returns a new instance of CodingSequence.



513
514
515
# File 'generated/google/apis/genomics_v1/classes.rb', line 513

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

Instance Attribute Details

#endString

The end of the coding sequence on this annotation's reference sequence, 0- based exclusive. Note that this position is relative to the reference start, and not the containing annotation start. Corresponds to the JSON property end

Returns:

  • (String)


511
512
513
# File 'generated/google/apis/genomics_v1/classes.rb', line 511

def end
  @end
end

#startString

The start of the coding sequence on this annotation's reference sequence, 0- based inclusive. Note that this position is relative to the reference start, and not the containing annotation start. Corresponds to the JSON property start

Returns:

  • (String)


504
505
506
# File 'generated/google/apis/genomics_v1/classes.rb', line 504

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



518
519
520
521
# File 'generated/google/apis/genomics_v1/classes.rb', line 518

def update!(**args)
  @start = args[:start] if args.key?(:start)
  @end = args[:end] if args.key?(:end)
end