class Bio::DAS::ENTRY_POINT
Attributes
href[RW]
segments[R]
version[RW]
Public Class Methods
new()
click to toggle source
# File lib/bio/io/das.rb 327 def initialize 328 @segments = Array.new 329 end
Public Instance Methods
each() { |x| ... }
click to toggle source
# File lib/bio/io/das.rb 333 def each 334 @segments.each do |x| 335 yield x 336 end 337 end