Module: Bio::Ucsc::AnoGam1
- Extended by:
- TableClassDetector
- Defined in:
- lib/bio-ucsc/anogam1.rb,
lib/bio-ucsc/anogam1/est.rb,
lib/bio-ucsc/anogam1/gap.rb,
lib/bio-ucsc/anogam1/gold.rb,
lib/bio-ucsc/anogam1/mrna.rb,
lib/bio-ucsc/anogam1/rmsk.rb,
lib/bio-ucsc/anogam1/chaindm3.rb,
lib/bio-ucsc/anogam1/intronest.rb,
lib/bio-ucsc/anogam1/chaindm3link.rb
Defined Under Namespace
Classes: ChainDm3, ChainDm3Link, DBConnection, Est, Gap, Gold, IntronEst, Mrna, Rmsk
Constant Summary collapse
- CHROMS =
%w(chr2L chr2R chr3L chr3R chrX chrU chrM)
Constants included from TableClassDetector
TableClassDetector::COMMON_CLASS_METHODS, TableClassDetector::PARAMETERS, TableClassDetector::RESERVED_METHODS, TableClassDetector::UPPERCASED_TABLE_PREFIX
Class Method Summary collapse
Methods included from TableClassDetector
bed, const_missing, genepred, generic, psl, rmsk
Class Method Details
.connect(param = Hash.new) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/bio-ucsc/anogam1.rb', line 21 def self.connect(param = Hash.new) DBConnection.db_adapter = param[:db_adapter] if param[:db_adapter] DBConnection.db_host = param[:db_host] if param[:db_host] DBConnection.db_username = param[:db_username] if param[:db_username] DBConnection.password = param[:password] if param[:password] DBConnection.connect end |
.default ⇒ Object
17 18 19 |
# File 'lib/bio-ucsc/anogam1.rb', line 17 def self.default DBConnection.default end |