module Bio::BioAlignment::MarkState
Attributes
marked[RW]
Public Instance Methods
mark!()
click to toggle source
# File lib/bio-alignment/state.rb, line 28 def mark! @marked = true end
marked?()
click to toggle source
# File lib/bio-alignment/state.rb, line 36 def marked? @marked == true end
to_s()
click to toggle source
# File lib/bio-alignment/state.rb, line 40 def to_s (marked? ? 'X' : '.') end
unmark!()
click to toggle source
# File lib/bio-alignment/state.rb, line 32 def unmark! @marked = false end