Method: Bio::FlatFileIndex#namespaces

Defined in:
lib/bio/io/flatfile/index.rb

#namespacesObject

Returns names of namespaces defined in the databank. (example: [ ‘LOCUS’, ‘ACCESSION’, ‘VERSION’ ] )



251
252
253
254
255
256
# File 'lib/bio/io/flatfile/index.rb', line 251

def namespaces
  check_closed?
  r = secondary_namespaces
  r.unshift primary_namespace
  r
end