in reply to Re^4: how to output the final Tree into a file?
in thread how to output the final Tree into a file?
That's right. Did you try:
while ( my $tree = $treeout->next_tree ) { for my $node ( $tree->get_nodes ) { printf $fh "id: %s bootstrap: %s\n", $node->id || '', $node->b +ootstrap || '', "\n"; } }
|
|---|