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