Sha256: 826ecc72308f879c325103e36a5dbe51fe67ec5b9fcf32e73c133ceeaf80376e
Contents?: true
Size: 690 Bytes
Versions: 33
Compression:
Stored size: 690 Bytes
Contents
# # bio/util/color_scheme/nucleotide.rb - Color codings for nucleotides # # Author:: Trevor Wennblom <mailto:trevor@corevx.com> # Copyright:: Copyright (c) 2005-2007 Midwinter Laboratories, LLC (http://midwinterlabs.com) # License:: The Ruby License # # $Id: nucleotide.rb,v 1.4 2007/04/05 23:35:41 trevor Exp $ # require 'bio/util/color_scheme' module Bio::ColorScheme class Nucleotide < Simple #:nodoc: ######### protected ######### @colors = { 'A' => '64F73F', 'C' => 'FFB340', 'G' => 'EB413C', 'T' => '3C88EE', 'U' => '3C88EE', } @colors.default = 'FFFFFF' # return white by default end NA = Nuc = Nucleotide end
Version data entries
33 entries across 33 versions & 5 rubygems