Method: Bio::Newick#reparse

Defined in:
lib/bio/db/newick.rb

#reparseObject

Re-parses the tree from the original string. Returns self. This method is useful after changing parser options.



102
103
104
105
106
107
108
# File 'lib/bio/db/newick.rb', line 102

def reparse
  if defined?(@tree)
    remove_instance_variable(:@tree)
  end
  self.tree
  self
end