Class: Rafflesia::SequenceSeedIndexBuildRequest
- Inherits:
-
Types::BaseModel
- Object
- Types::BaseModel
- Rafflesia::SequenceSeedIndexBuildRequest
- Defined in:
- lib/rafflesia/sequences/sequence_seed_index_build_request.rb
Constant Summary collapse
- HASH_ATTRS =
{ dataset_name: :dataset_name, dataset_version: :dataset_version, input_object_id: :input_object_id, input_path: :input_path, kmer_size: :kmer_size, name: :name, payload_block_size: :payload_block_size, payload_lite: :payload_lite, posting_block_size: :posting_block_size, version: :version }.freeze
Instance Attribute Summary collapse
-
#dataset_name ⇒ Object
Returns the value of attribute dataset_name.
-
#dataset_version ⇒ Object
Returns the value of attribute dataset_version.
-
#input_object_id ⇒ Object
Returns the value of attribute input_object_id.
-
#input_path ⇒ Object
Returns the value of attribute input_path.
-
#kmer_size ⇒ Object
Returns the value of attribute kmer_size.
-
#name ⇒ Object
Returns the value of attribute name.
-
#payload_block_size ⇒ Object
Returns the value of attribute payload_block_size.
-
#payload_lite ⇒ Object
Returns the value of attribute payload_lite.
-
#posting_block_size ⇒ Object
Returns the value of attribute posting_block_size.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize(json) ⇒ SequenceSeedIndexBuildRequest
constructor
A new instance of SequenceSeedIndexBuildRequest.
Constructor Details
#initialize(json) ⇒ SequenceSeedIndexBuildRequest
Returns a new instance of SequenceSeedIndexBuildRequest.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 33 def initialize(json) super() hash = self.class.normalize(json) @dataset_name = hash[:dataset_name] @dataset_version = hash[:dataset_version] @input_object_id = hash[:input_object_id] @input_path = hash[:input_path] @kmer_size = hash[:kmer_size] @name = hash[:name] @payload_block_size = hash[:payload_block_size] @payload_lite = hash[:payload_lite] @posting_block_size = hash[:posting_block_size] @version = hash[:version] end |
Instance Attribute Details
#dataset_name ⇒ Object
Returns the value of attribute dataset_name.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def dataset_name @dataset_name end |
#dataset_version ⇒ Object
Returns the value of attribute dataset_version.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def dataset_version @dataset_version end |
#input_object_id ⇒ Object
Returns the value of attribute input_object_id.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def input_object_id @input_object_id end |
#input_path ⇒ Object
Returns the value of attribute input_path.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def input_path @input_path end |
#kmer_size ⇒ Object
Returns the value of attribute kmer_size.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def kmer_size @kmer_size end |
#name ⇒ Object
Returns the value of attribute name.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def name @name end |
#payload_block_size ⇒ Object
Returns the value of attribute payload_block_size.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def payload_block_size @payload_block_size end |
#payload_lite ⇒ Object
Returns the value of attribute payload_lite.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def payload_lite @payload_lite end |
#posting_block_size ⇒ Object
Returns the value of attribute posting_block_size.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def posting_block_size @posting_block_size end |
#version ⇒ Object
Returns the value of attribute version.
21 22 23 |
# File 'lib/rafflesia/sequences/sequence_seed_index_build_request.rb', line 21 def version @version end |