class Bio::GFF::GFF3::RecordBoundary
This is a dummy record corresponding to the “###” metadata.
Public Class Methods
new(*arg)
click to toggle source
Calls superclass method
Bio::GFF::GFF3::Record::new
# File lib/bio/db/gff.rb 1824 def initialize(*arg) 1825 super(*arg) 1826 self.freeze 1827 end
Public Instance Methods
to_s()
click to toggle source
# File lib/bio/db/gff.rb 1829 def to_s 1830 "###\n" 1831 end