class Bio::RestrictionEnzyme::CutSymbol::CutSymbol__
Class to keep state
Public Class Methods
cut_symbol()
click to toggle source
# File lib/bio/util/restriction_enzyme/cut_symbol.rb 96 def self.cut_symbol; @cut_symbol; end
cut_symbol=(glyph)
click to toggle source
# File lib/bio/util/restriction_enzyme/cut_symbol.rb 98 def self.cut_symbol=(glyph); 99 raise ArgumentError if glyph.size != 1 100 @cut_symbol = glyph 101 end
escaped_cut_symbol()
click to toggle source
# File lib/bio/util/restriction_enzyme/cut_symbol.rb 103 def self.escaped_cut_symbol; "\\" + self.cut_symbol; end