class Google::Apis::GenomicsV1::SearchReferencesRequest

Attributes

accessions[RW]

If present, return references for which a prefix of any of sourceAccessions match any of these strings. Accession numbers typically have a main number and a version, for example `GCF_000001405.26`. Corresponds to the JSON property `accessions` @return [Array<String>]

md5checksums[RW]

If present, return references for which the md5checksum matches exactly. Corresponds to the JSON property `md5checksums` @return [Array<String>]

page_size[RW]

The maximum number of results to return in a single page. If unspecified, defaults to 1024. The maximum value is 4096. Corresponds to the JSON property `pageSize` @return [Fixnum]

page_token[RW]

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]

reference_set_id[RW]

If present, return only references which belong to this reference set. Corresponds to the JSON property `referenceSetId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 2295
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 2300
def update!(**args)
  @md5checksums = args[:md5checksums] if args.key?(:md5checksums)
  @accessions = args[:accessions] if args.key?(:accessions)
  @reference_set_id = args[:reference_set_id] if args.key?(:reference_set_id)
  @page_token = args[:page_token] if args.key?(:page_token)
  @page_size = args[:page_size] if args.key?(:page_size)
end