1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
#
# = bio/db/kegg/brite.rb - KEGG/BRITE database class
#
# Copyright:: Copyright (C) 2001 Toshiaki Katayama <k@bioruby.org>
# License:: The Ruby License
#
# $Id: brite.rb,v 0.8 2007/04/05 23:35:41 trevor Exp $
#
require 'bio/db'
module Bio
class KEGG
# == Note
#
# This class is not completely implemented, but obsolete as the original
# database BRITE has changed it's meaning.
#
class BRITE < KEGGDB
DELIMITER = RS = "\n///\n"
TAGSIZE = 12
def initialize(entry)
super(entry, TAGSIZE)
end
# ENTRY
# DEFINITION
# RELATION
# FACTORS
# INTERACTION
# SOURCE
# REFERENCE
end # BRITE
end # KEGG
end # Bio
|