Class: Fasta

Inherits:
Record show all
Defined in:
lib/dna/parsers/fasta.rb

Overview

Fasta record

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Record

#length

Constructor Details

#initialize(args = {}) ⇒ Fasta

Returns a new instance of Fasta.



28
29
30
31
# File 'lib/dna/parsers/fasta.rb', line 28

def initialize(args={})
  @name = args[:name]
  @sequence = args[:sequence]
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



26
27
28
# File 'lib/dna/parsers/fasta.rb', line 26

def name
  @name
end

#sequenceObject

Returns the value of attribute sequence.



26
27
28
# File 'lib/dna/parsers/fasta.rb', line 26

def sequence
  @sequence
end

Instance Method Details

#to_sObject



33
34
35
# File 'lib/dna/parsers/fasta.rb', line 33

def to_s
  ">#{@name}\n#{@sequence}"
end