class Google::Apis::GenomicsV1::StreamVariantsRequest
The stream variants request.
Attributes
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>]
The end of the window (0-based, exclusive) for which overlapping variants should be returned. Corresponds to the JSON property `end` @return [String]
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]
Required. Only return variants in this reference sequence. Corresponds to the JSON property `referenceName` @return [String]
The beginning of the window (0-based, inclusive) for which overlapping variants should be returned. Corresponds to the JSON property `start` @return [String]
The variant set ID from which to stream variants. Corresponds to the JSON property `variantSetId` @return [String]
Public Class Methods
# File generated/google/apis/genomics_v1/classes.rb, line 3216 def initialize(**args) update!(**args) end
Public Instance Methods
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