Class: BioInterchange::Genomics::VCFReader

Inherits:
GFF3Reader show all
Defined in:
lib/biointerchange/genomics/vcf_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) ⇒ VCFReader

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.



26
27
28
29
# File 'lib/biointerchange/genomics/vcf_reader.rb', line 26

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