Method: Bio::FastaFormat#identifiers
- Defined in:
- lib/bio/db/fasta.rb
#identifiers ⇒ Object
Parsing FASTA Defline, and extract IDs. IDs are NSIDs (NCBI standard FASTA sequence identifiers) or “:”-separated IDs. It returns a Bio::FastaDefline instance.
243 244 245 246 247 248 |
# File 'lib/bio/db/fasta.rb', line 243 def identifiers unless defined?(@ids) then @ids = FastaDefline.new(@definition) end @ids end |