Class: Bio::TwoBit::Hg38

Inherits:
ReferenceGenome show all
Defined in:
lib/bio/twobit/references/hg38.rb

Instance Method Summary collapse

Methods inherited from ReferenceGenome

open

Constructor Details

#initialize(**kwargs) ⇒ Hg38

Returns a new instance of Hg38.



6
7
8
9
10
11
12
13
# File 'lib/bio/twobit/references/hg38.rb', line 6

def initialize(**kwargs)
  @metadata      = Metadata.new
  @metadata.id   = "hg38"
  @metadata.name = "hg38"
  @metadata.url  = "https://hgdownload.soe.ucsc.edu/downloads.html"
  @data_url      = "https://hgdownload.soe.ucsc.edu/goldenPath/hg38/bigZips/hg38.2bit"
  super(**kwargs)
end