class Google::Apis::GenomicsV1beta2::SearchReferencesRequest
Attributes
If present, return references for which the accession matches this string. Best to give a version number, for example GCF_000001405.26. If only the main accession number is given then all records with that main accession will be returned, whichever version. Note that different versions will have different sequences. Corresponds to the JSON property `accessions` @return [Array<String>]
If present, return references for which the md5checksum matches. See Reference. md5checksum for construction details. Corresponds to the JSON property `md5checksums` @return [Array<String>]
Specifies the maximum number of results to return in a single page. Corresponds to the JSON property `pageSize` @return [Fixnum]
The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response. Corresponds to the JSON property `pageToken` @return [String]
If present, return only references which belong to this reference set. Corresponds to the JSON property `referenceSetId` @return [String]
Public Class Methods
# File generated/google/apis/genomics_v1beta2/classes.rb, line 2725 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/genomics_v1beta2/classes.rb, line 2730 def update!(**args) @accessions = args[:accessions] unless args[:accessions].nil? @md5checksums = args[:md5checksums] unless args[:md5checksums].nil? @page_size = args[:page_size] unless args[:page_size].nil? @page_token = args[:page_token] unless args[:page_token].nil? @reference_set_id = args[:reference_set_id] unless args[:reference_set_id].nil? end