class Bio::GenPept
Public Instance Methods
Source
# File lib/bio/db/genbank/genpept.rb 55 def dbsource 56 get('DBSOURCE') 57 end
DBSOURCE
Source
# File lib/bio/db/genbank/genpept.rb 30 def locus 31 @data['LOCUS'] ||= Locus.new(get('LOCUS')) 32 end
Source
# File lib/bio/db/genbank/genpept.rb 41 def seq 42 unless @data['SEQUENCE'] 43 origin 44 end 45 Bio::Sequence::AA.new(@data['SEQUENCE']) 46 end
ORIGIN
Also aliased as: aaseq