Sha256: 4abef0f15857d62e951e4ac6b5c91559a90eb3e80e7a2bb82a3cd35304bfe401

Contents?: true

Size: 408 Bytes

Versions: 1

Compression:

Stored size: 408 Bytes

Contents

class MiniFeature
  attr_accessor :start, :end, :strand, :exons, :utrs, :block_gaps, :segment_height, :id
  def initialize(args)
    @start = args[:start]
    @end = args[:end]
    @strand = args[:strand]
    @exons = args[:exons] || []
    @utrs = args[:utrs] || [] #start, ennd, strand, arg[:exons], arg[:utrs]
    @block_gaps = []
    @id = args[:id]
    @segment_height = args[:segment_height]
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bio-svgenes-0.1.1 lib/bio/graphics/mini_feature.rb