Sha256: 22624086c24b46fed4ff3b4783465c0bfd3918a6e90cf1bba14c0b3dfcb3a300
Contents?: true
Size: 523 Bytes
Versions: 10
Compression:
Stored size: 523 Bytes
Contents
# # = bio/db/embl/trembl.rb - (deprecated) TrEMBL database class # # Copyright:: Copyright (C) 2013 BioRuby Project # License:: The Ruby License # warn "Bio::TrEMBL is deprecated. Use Bio::UniProtKB." module Bio require 'bio/db/embl/uniprotkb' unless const_defined?(:UniProtKB) # Bio::TrEMBL is deprecated. Use Bio::UniProtKB. class TrEMBL < UniProtKB # Bio::TrEMBL is deprecated. Use Bio::UniProtKB. def initialize(str) warn "Bio::TrEMBL is deprecated. Use Bio::UniProtKB." super(str) end end end
Version data entries
10 entries across 10 versions & 1 rubygems