Construct phylogenetic tree from pairwise distances
PhyloTree
= seqlinkage(Distances
)
PhyloTree
= seqlinkage(Distances
, Method
)
PhyloTree
= seqlinkage(Distances
, Method
, Names
)
Distances | Matrix or vector of pairwise distances, such as returned
by the |
Method | Character vector or string that specifies a distance method. Choices are:
|
Names | Specifies alternative labels for leaf nodes. Choices are:
The elements must be unique. The number of elements
must comply with the number of samples used to generate the pairwise
distances in |
returns
a phylogenetic tree object from the pairwise distances, PhyloTree
= seqlinkage(Distances
)Distances
,
between the species or products. Distances
is
a matrix or vector of pairwise distances, such as returned by the seqpdist
function.
creates
a phylogenetic tree object using a specified patristic distance method.
The available methods are:PhyloTree
= seqlinkage(Distances
, Method
)
'single' | Nearest distance (single linkage method) |
'complete' | Furthest distance (complete linkage method) |
'average' (default) | Unweighted Pair Group Method Average (UPGMA, group average). |
'weighted' | Weighted Pair Group Method Average (WPGMA) |
'centroid' | Unweighted Pair Group Method Centroid (UPGMC) |
'median' | Weighted Pair Group Method Centroid (WPGMC) |
passes
a list of unique names to label the leaf nodes (for example, species
or products) in a phylogenetic tree object.PhyloTree
= seqlinkage(Distances
, Method
, Names
)
cluster
| phytree
| phytreewrite
| plot
| seqneighjoin
| seqpdist
| view