Class: Google::Apis::GenomicsV1beta2::ReadGroupExperiment
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::ReadGroupExperiment
- 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
-
#instrument_model ⇒ String
The instrument model used as part of this experiment.
-
#library_id ⇒ String
The library used as part of this experiment.
-
#platform_unit ⇒ String
The platform unit used as part of this experiment e.g.
-
#sequencing_center ⇒ String
The sequencing center used as part of this experiment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReadGroupExperiment
constructor
A new instance of ReadGroupExperiment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
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_model ⇒ String
The instrument model used as part of this experiment. This maps to sequencing
technology in BAM.
Corresponds to the JSON property instrumentModel
1842 1843 1844 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1842 def instrument_model @instrument_model end |
#library_id ⇒ String
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
1849 1850 1851 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1849 def library_id @library_id end |
#platform_unit ⇒ String
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
1855 1856 1857 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1855 def platform_unit @platform_unit end |
#sequencing_center ⇒ String
The sequencing center used as part of this experiment.
Corresponds to the JSON property sequencingCenter
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 |