class Bio::GFF::GFF3::Record::Gap::Code
Code
is a class to store length of single-letter code.
Attributes
code[R]
1-letter code (Symbol). One of :M, :I, :D, :F, or :R is expected.
length[R]
length (Integer)
Public Instance Methods
to_s()
click to toggle source
# File lib/bio/db/gff.rb 1267 def to_s 1268 "#{code}#{length}" 1269 end