Class: BioInterchange::Genomics::GVFReader

Inherits:
GFF3Reader show all
Defined in:
lib/biointerchange/genomics/gvf_reader.rb

Instance Method Summary collapse

Methods inherited from GFF3Reader

#deserialize, #postponed?

Methods inherited from Reader

#deserialize

Constructor Details

#initialize(name = nil, name_uri = nil, date = nil, batch_size = nil) ⇒ GVFReader

Creates a new instance of a Genome Variation Format (GVF) reader.

name

Optional name of the person who generated the GVF file.

name_uri

Optional e-mail address of the person who generated the GVF file.

date

Optional date of when the GVF file was produced.



24
25
26
27
# File 'lib/biointerchange/genomics/gvf_reader.rb', line 24

def initialize(name = nil, name_uri = nil, date = nil, batch_size = nil)
  # Remember: calling super without brackets passes all arguments of initialize!
  super
end