1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#
# = bio/db/embl/sptr.rb - Bio::SPTR is an alias of Bio::UniProtKB
#
# Copyright:: Copyright (C) 2013 BioRuby Project
# License:: The Ruby License
#
warn "Bio::SPTR is changed to an alias of Bio::UniProtKB. Please use Bio::UniProtKB. Bio::SPTR may be deprecated in the future." if $VERBOSE
module Bio
require "bio/db/embl/uniprotkb" unless const_defined?(:UniProtKB)
# Bio::SPTR is changed to an alias of Bio::UniProtKB.
# Please use Bio::UniProtKB.
# Bio::SPTR may be deprecated in the future.
SPTR = UniProtKB
end #module Bio
|