class Google::Apis::GenomicsV1::StreamVariantsRequest

The stream variants request.

Attributes

call_set_ids[RW]

Only return variant calls which belong to call sets with these IDs. Leaving this blank returns all variant calls. Corresponds to the JSON property `callSetIds` @return [Array<String>]

end[RW]

The end of the window (0-based, exclusive) for which overlapping variants should be returned. Corresponds to the JSON property `end` @return [String]

project_id[RW]

The Google Developers Console project ID or number which will be billed for this access. The caller must have WRITE access to this project. Required. Corresponds to the JSON property `projectId` @return [String]

reference_name[RW]

Required. Only return variants in this reference sequence. Corresponds to the JSON property `referenceName` @return [String]

start[RW]

The beginning of the window (0-based, inclusive) for which overlapping variants should be returned. Corresponds to the JSON property `start` @return [String]

variant_set_id[RW]

The variant set ID from which to stream variants. Corresponds to the JSON property `variantSetId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 3216
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_v1/classes.rb, line 3221
def update!(**args)
  @project_id = args[:project_id] if args.key?(:project_id)
  @variant_set_id = args[:variant_set_id] if args.key?(:variant_set_id)
  @call_set_ids = args[:call_set_ids] if args.key?(:call_set_ids)
  @reference_name = args[:reference_name] if args.key?(:reference_name)
  @start = args[:start] if args.key?(:start)
  @end = args[:end] if args.key?(:end)
end