class Google::Apis::GenomicsV1beta2::CigarUnit
A single CIGAR operation.
Attributes
operation[RW]
Corresponds to the JSON property `operation` @return [String]
operation_length[RW]
The number of bases that the operation runs for. Required. Corresponds to the JSON property `operationLength` @return [String]
reference_sequence[RW]
referenceSequence is only used at mismatches (SEQUENCE_MISMATCH) and deletions (DELETE). Filling this field replaces SAM's MD tag. If the relevant information is not available, this field is unset. Corresponds to the JSON property `referenceSequence` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 511 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 516 def update!(**args) @operation = args[:operation] unless args[:operation].nil? @operation_length = args[:operation_length] unless args[:operation_length].nil? @reference_sequence = args[:reference_sequence] unless args[:reference_sequence].nil? end