module Bio::BioAlignment::DeleteState

Attributes

deleted[RW]

Public Instance Methods

delete!() click to toggle source
# File lib/bio-alignment/state.rb, line 12
def delete!
  @deleted = true
end
deleted?() click to toggle source
# File lib/bio-alignment/state.rb, line 16
def deleted?
  @deleted == true
end
to_s() click to toggle source
# File lib/bio-alignment/state.rb, line 20
def to_s
  (deleted? ? 'X' : '.')
end