304 |
# |
# |
305 |
# Read trees: |
# Read trees: |
306 |
# |
# |
307 |
# $tree = read_newick_tree( $file ) # reads to a semicolon |
# $tree = read_newick_tree( ) |
308 |
# @trees = read_newick_trees( $file ) # reads to end of file |
# $tree = read_newick_tree( \*FH ) |
309 |
|
# $tree = read_newick_tree( $file ) |
310 |
|
# |
311 |
|
# @trees = read_newick_trees( ) |
312 |
|
# @trees = read_newick_trees( \*FH ) |
313 |
|
# @trees = read_newick_trees( $file ) |
314 |
|
# |
315 |
# $tree = parse_newick_tree_str( $string ) |
# $tree = parse_newick_tree_str( $string ) |
316 |
# |
# |
317 |
#=============================================================================== |
#=============================================================================== |
3332 |
|
|
3333 |
|
|
3334 |
#=============================================================================== |
#=============================================================================== |
3335 |
# $tree = read_newick_tree( $file ) # reads to a semicolon |
# Read to a semicolon |
3336 |
# @trees = read_newick_trees( $file ) # reads to end of file |
# |
3337 |
|
# $tree = read_newick_tree( ) |
3338 |
|
# $tree = read_newick_tree( \*FH ) |
3339 |
|
# $tree = read_newick_tree( $file ) |
3340 |
|
# |
3341 |
|
# Read to end of file: |
3342 |
|
# @trees = read_newick_trees( ) |
3343 |
|
# @trees = read_newick_trees( \*FH ) |
3344 |
|
# @trees = read_newick_trees( $file ) |
3345 |
#=============================================================================== |
#=============================================================================== |
3346 |
|
|
3347 |
sub read_newick_tree |
sub read_newick_tree |