Method: Bio::Reference#embl

Defined in:
lib/bio/reference.rb

#emblObject

Returns reference formatted in the EMBL style.

# ref is a Bio::Reference object
puts ref.embl

  RP   1-1859
  RX   PUBMED; 1907511.
  RA   Oxtoby E., Dunn M.A., Pancoro A., Hughes M.A.;
  RT   "Nucleotide and derived amino acid sequence of the cyanogenic
  RT   beta-glucosidase (linamarase) from white clover (Trifolium repens L.)";
  RL   Plant Mol. Biol. 17(2):209-219(1991).


296
297
298
299
300
301
# File 'lib/bio/reference.rb', line 296

def embl
  r = self
  Bio::Sequence::Format::NucFormatter::Embl.new('').instance_eval {
    reference_format_embl(r)
  }
end