Class: Google::Apis::GenomicsV1beta2::ReadGroupExperiment

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ReadGroupExperiment

Returns a new instance of ReadGroupExperiment.



1862
1863
1864
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1862

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

Instance Attribute Details

#instrument_modelString

The instrument model used as part of this experiment. This maps to sequencing technology in BAM. Corresponds to the JSON property instrumentModel

Returns:

  • (String)


1842
1843
1844
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1842

def instrument_model
  @instrument_model
end

#library_idString

The library used as part of this experiment. Note: This is not an actual ID within this repository, but rather an identifier for a library which may be meaningful to some external system. Corresponds to the JSON property libraryId

Returns:

  • (String)


1849
1850
1851
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1849

def library_id
  @library_id
end

#platform_unitString

The platform unit used as part of this experiment e.g. flowcell-barcode.lane for Illumina or slide for SOLiD. Corresponds to the Corresponds to the JSON property platformUnit

Returns:

  • (String)


1855
1856
1857
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1855

def platform_unit
  @platform_unit
end

#sequencing_centerString

The sequencing center used as part of this experiment. Corresponds to the JSON property sequencingCenter

Returns:

  • (String)


1860
1861
1862
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1860

def sequencing_center
  @sequencing_center
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1867
1868
1869
1870
1871
1872
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1867

def update!(**args)
  @instrument_model = args[:instrument_model] unless args[:instrument_model].nil?
  @library_id = args[:library_id] unless args[:library_id].nil?
  @platform_unit = args[:platform_unit] unless args[:platform_unit].nil?
  @sequencing_center = args[:sequencing_center] unless args[:sequencing_center].nil?
end