Class: Google::Apis::GenomicsV1::SearchReadsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1::SearchReadsResponse
 
- 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
Overview
The read search response.
Instance Attribute Summary collapse
- 
  
    
      #alignments  ⇒ Array<Google::Apis::GenomicsV1::Read> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of matching alignments sorted by mapped genomic coordinate, if any, ascending in position within the same reference. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The continuation token, which is used to page through large result sets. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SearchReadsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SearchReadsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchReadsResponse
Returns a new instance of SearchReadsResponse
| 2737 2738 2739 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2737 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#alignments ⇒ Array<Google::Apis::GenomicsV1::Read>
The list of matching alignments sorted by mapped genomic coordinate,
if any, ascending in position within the same reference. Unmapped reads,
which have no position, are returned contiguously and are sorted in
ascending lexicographic order by fragment name.
Corresponds to the JSON property alignments
| 2728 2729 2730 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2728 def alignments @alignments end | 
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
Provide this value in a subsequent request to return the next page of
results. This field will be empty if there aren't any additional results.
Corresponds to the JSON property nextPageToken
| 2735 2736 2737 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2735 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2742 2743 2744 2745 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2742 def update!(**args) @alignments = args[:alignments] if args.key?(:alignments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |