Class: Google::Apis::GenomicsV1::SearchAnnotationsRequest

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

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

Returns a new instance of SearchAnnotationsRequest



1069
1070
1071
# File 'generated/google/apis/genomics_v1/classes.rb', line 1069

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

Instance Attribute Details

#annotation_set_idsArray<String>

Required. The annotation sets to search within. The caller must have READ access to these annotation sets. All queried annotation sets must have the same type. Corresponds to the JSON property annotationSetIds

Returns:

  • (Array<String>)


1035
1036
1037
# File 'generated/google/apis/genomics_v1/classes.rb', line 1035

def annotation_set_ids
  @annotation_set_ids
end

#endFixnum

The end position of the range on the reference, 0-based exclusive. If referenceId or referenceName must be specified, Defaults to the length of the reference. Corresponds to the JSON property end

Returns:

  • (Fixnum)


1054
1055
1056
# File 'generated/google/apis/genomics_v1/classes.rb', line 1054

def end
  @end
end

#page_sizeFixnum

The maximum number of results to return in a single page. If unspecified, defaults to 256. The maximum value is 2048. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


1067
1068
1069
# File 'generated/google/apis/genomics_v1/classes.rb', line 1067

def page_size
  @page_size
end

#page_tokenString

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

Returns:

  • (String)


1061
1062
1063
# File 'generated/google/apis/genomics_v1/classes.rb', line 1061

def page_token
  @page_token
end

#reference_idString

The ID of the reference to query. Corresponds to the JSON property referenceId

Returns:

  • (String)


1046
1047
1048
# File 'generated/google/apis/genomics_v1/classes.rb', line 1046

def reference_id
  @reference_id
end

#reference_nameString

The name of the reference to query, within the reference set associated with this query. Corresponds to the JSON property referenceName

Returns:

  • (String)


1041
1042
1043
# File 'generated/google/apis/genomics_v1/classes.rb', line 1041

def reference_name
  @reference_name
end

#startFixnum

The start position of the range on the reference, 0-based inclusive. If specified, referenceId or referenceName must be specified. Defaults to 0. Corresponds to the JSON property start

Returns:

  • (Fixnum)


1028
1029
1030
# File 'generated/google/apis/genomics_v1/classes.rb', line 1028

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1074
1075
1076
1077
1078
1079
1080
1081
1082
# File 'generated/google/apis/genomics_v1/classes.rb', line 1074

def update!(**args)
  @start = args[:start] if args.key?(:start)
  @annotation_set_ids = args[:annotation_set_ids] if args.key?(:annotation_set_ids)
  @reference_name = args[:reference_name] if args.key?(:reference_name)
  @reference_id = args[:reference_id] if args.key?(:reference_id)
  @end = args[:end] if args.key?(:end)
  @page_token = args[:page_token] if args.key?(:page_token)
  @page_size = args[:page_size] if args.key?(:page_size)
end