Class: Google::Apis::GenomicsV1::ReadGroupSet

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

A read group set is a logical collection of read groups, which are collections of reads produced by a sequencer. A read group set typically models reads corresponding to one sample, sequenced one way, and aligned one way.

  • A read group set belongs to one dataset.
  • A read group belongs to one read group set.
  • A read belongs to one read group. For more genomics resource definitions, see Fundamentals of Google Genomics

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

Returns a new instance of ReadGroupSet



1565
1566
1567
# File 'generated/google/apis/genomics_v1/classes.rb', line 1565

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

Instance Attribute Details

#dataset_idString

The dataset to which this read group set belongs. Corresponds to the JSON property datasetId

Returns:

  • (String)


1536
1537
1538
# File 'generated/google/apis/genomics_v1/classes.rb', line 1536

def dataset_id
  @dataset_id
end

#filenameString

The filename of the original source file for this read group set, if any. Corresponds to the JSON property filename

Returns:

  • (String)


1547
1548
1549
# File 'generated/google/apis/genomics_v1/classes.rb', line 1547

def filename
  @filename
end

#idString

The server-generated read group set ID, unique for all read group sets. Corresponds to the JSON property id

Returns:

  • (String)


1531
1532
1533
# File 'generated/google/apis/genomics_v1/classes.rb', line 1531

def id
  @id
end

#infoHash<String,Array<Object>>

A map of additional read group set information. Corresponds to the JSON property info

Returns:

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


1563
1564
1565
# File 'generated/google/apis/genomics_v1/classes.rb', line 1563

def info
  @info
end

#nameString

The read group set name. By default this will be initialized to the sample name of the sequenced data contained in this set. Corresponds to the JSON property name

Returns:

  • (String)


1553
1554
1555
# File 'generated/google/apis/genomics_v1/classes.rb', line 1553

def name
  @name
end

#read_groupsArray<Google::Apis::GenomicsV1::ReadGroup>

The read groups in this set. There are typically 1-10 read groups in a read group set. Corresponds to the JSON property readGroups



1542
1543
1544
# File 'generated/google/apis/genomics_v1/classes.rb', line 1542

def read_groups
  @read_groups
end

#reference_set_idString

The reference set to which the reads in this read group set are aligned. Corresponds to the JSON property referenceSetId

Returns:

  • (String)


1558
1559
1560
# File 'generated/google/apis/genomics_v1/classes.rb', line 1558

def reference_set_id
  @reference_set_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1570
1571
1572
1573
1574
1575
1576
1577
1578
# File 'generated/google/apis/genomics_v1/classes.rb', line 1570

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
  @read_groups = args[:read_groups] if args.key?(:read_groups)
  @filename = args[:filename] if args.key?(:filename)
  @name = args[:name] if args.key?(:name)
  @reference_set_id = args[:reference_set_id] if args.key?(:reference_set_id)
  @info = args[:info] if args.key?(:info)
end