File: sptr.rb

package info (click to toggle)
ruby-bio 2.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,108 kB
  • sloc: ruby: 68,331; perl: 13; makefile: 11; sh: 1
file content (20 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (6)
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