class Ensembl::Session
Attributes
collection_species[RW]
coord_system_ids[RW]
coord_systems[RW]
release[RW]
seq_regions[RW]
seqlevel_coord_system[RW]
seqlevel_id[RW]
toplevel_coord_system[RW]
toplevel_id[RW]
Public Class Methods
new()
click to toggle source
# File lib/bio-ensembl.rb, line 24 def initialize @coord_systems = Hash.new # key = id; value = CoordSystem object @coord_system_ids = Hash.new # key = id; value = name @seq_regions = Hash.new @release = ENSEMBL_RELEASE end
Public Instance Methods
reset()
click to toggle source
# File lib/bio-ensembl.rb, line 31 def reset @coord_systems = Hash.new @coord_system_ids = Hash.new @seq_regions = Hash.new @seqlevel_id = nil @toplevel_id = nil @seqlevel_coord_system = nil @toplevel_coord_system = nil @collection_species = nil end