Method: Bio::EMBL#each_cds

Defined in:
lib/bio/db/embl/embl.rb

#each_cdsObject

iterates on CDS features in the FT lines.



381
382
383
384
385
386
387
# File 'lib/bio/db/embl/embl.rb', line 381

def each_cds
  ft.each do |cds_feature|
    if cds_feature.feature == 'CDS'
      yield cds_feature
    end
  end
end