Module: Bio::Ucsc::FelCat4
- Extended by:
- TableClassDetector
- Defined in:
- lib/bio-ucsc/felcat4.rb
Defined Under Namespace
Classes: DBConnection
Constant Summary collapse
- CHROMS =
%w(chrA1 chrC1 chrA2 chrB1 chrA3 chrC2 chrB2 chrB4 chrB3 chrD1 chrX chrE1 chrD3 chrD4 chrD2 chrF1 chrF2 chrE2 chrE3)
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
23 24 25 26 27 28 29 |
# File 'lib/bio-ucsc/felcat4.rb', line 23 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
19 20 21 |
# File 'lib/bio-ucsc/felcat4.rb', line 19 def self.default DBConnection.default end |