Class: Bio::RestrictionEnzyme::CutSymbol::CutSymbol__
- Includes:
- Singleton
- Defined in:
- lib/bio/util/restriction_enzyme/cut_symbol.rb
Overview
Class to keep state
Class Method Summary collapse
Class Method Details
.cut_symbol ⇒ Object
95 |
# File 'lib/bio/util/restriction_enzyme/cut_symbol.rb', line 95 def self.cut_symbol; @cut_symbol; end |
.cut_symbol=(glyph) ⇒ Object
97 98 99 100 |
# File 'lib/bio/util/restriction_enzyme/cut_symbol.rb', line 97 def self.cut_symbol=(glyph); raise ArgumentError if glyph.size != 1 @cut_symbol = glyph end |
.escaped_cut_symbol ⇒ Object
102 |
# File 'lib/bio/util/restriction_enzyme/cut_symbol.rb', line 102 def self.escaped_cut_symbol; "\\" + self.cut_symbol; end |