1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, scikit-bio development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE.txt, distributed with this software.
# ----------------------------------------------------------------------------
import functools
import numpy as np
from skbio.util._decorator import experimental
from skbio.diversity._util import (_validate_counts_matrix,
_validate_otu_ids_and_tree,
_vectorize_counts_and_tree)
from skbio.diversity._phylogenetic import _tip_distances
# The default value indicating whether normalization should be applied
# for weighted UniFrac. This is used in two locations, so set in a single
# variable to avoid the code base becoming out of sync in the event of a
# change in this default value.
_normalize_weighted_unifrac_by_default = False
@experimental(as_of="0.4.1")
def unweighted_unifrac(u_counts, v_counts, otu_ids, tree, validate=True):
""" Compute unweighted UniFrac
Parameters
----------
u_counts, v_counts: list, np.array
Vectors of counts/abundances of OTUs for two samples. Must be equal
length.
otu_ids: list, np.array
Vector of OTU ids corresponding to tip names in ``tree``. Must be the
same length as ``u_counts`` and ``v_counts``.
tree: skbio.TreeNode
Tree relating the OTUs in otu_ids. The set of tip names in the tree can
be a superset of ``otu_ids``, but not a subset.
validate: bool, optional
If `False`, validation of the input won't be performed. This step can
be slow, so if validation is run elsewhere it can be disabled here.
However, invalid input data can lead to invalid results or error
messages that are hard to interpret, so this step should not be
bypassed if you're not certain that your input data are valid. See
:mod:`skbio.diversity` for the description of what validation entails
so you can determine if you can safely disable validation.
Returns
-------
float
The unweighted UniFrac distance between the two samples.
Raises
------
ValueError, MissingNodeError, DuplicateNodeError
If validation fails. Exact error will depend on what was invalid.
See Also
--------
weighted_unifrac
skbio.diversity
skbio.diversity.beta_diversity
Notes
-----
Unweighted UniFrac was originally described in [1]_. A discussion of
unweighted (qualitative) versus weighted (quantitative) diversity metrics
is presented in [2]_. Deeper mathematical discussions of this metric is
presented in [3]_.
If computing unweighted UniFrac for multiple pairs of samples, using
``skbio.diversity.beta_diversity`` will be much faster than calling this
function individually on each sample.
This implementation differs from that in PyCogent (and therefore QIIME
versions less than 2.0.0) by imposing a few additional restrictions on the
inputs. First, the input tree must be rooted. In PyCogent, if an unrooted
tree was provided that had a single trifurcating node (a newick convention
for unrooted trees) that node was considered the root of the tree. Next,
all OTU IDs must be tips in the tree. PyCogent would silently ignore OTU
IDs that were not present the tree. To reproduce UniFrac results from
PyCogent with scikit-bio, ensure that your PyCogent UniFrac calculations
are performed on a rooted tree and that all OTU IDs are present in the
tree.
This implementation of unweighted UniFrac is the array-based implementation
described in [4]_.
If using large number of samples or a large tree, we advise using the
optimized UniFrac library [5]_.
References
----------
.. [1] Lozupone, C. & Knight, R. UniFrac: a new phylogenetic method for
comparing microbial communities. Appl. Environ. Microbiol. 71, 8228-8235
(2005).
.. [2] Lozupone, C. A., Hamady, M., Kelley, S. T. & Knight, R. Quantitative
and qualitative beta diversity measures lead to different insights into
factors that structure microbial communities. Appl. Environ. Microbiol.
73, 1576-1585 (2007).
.. [3] Lozupone, C., Lladser, M. E., Knights, D., Stombaugh, J. & Knight,
R. UniFrac: an effective distance metric for microbial community
comparison. ISME J. 5, 169-172 (2011).
.. [4] Hamady M, Lozupone C, Knight R. Fast UniFrac: facilitating high-
throughput phylogenetic analyses of microbial communities including
analysis of pyrosequencing and PhyloChip data. ISME J. 4(1):17-27
(2010).
.. [5] https://github.com/biocore/unifrac
Examples
--------
Assume we have the following abundance data for two samples, ``u`` and
``v``, represented as a pair of counts vectors. These counts represent the
number of times specific Operational Taxonomic Units, or OTUs, were
observed in each of the samples.
>>> u_counts = [1, 0, 0, 4, 1, 2, 3, 0]
>>> v_counts = [0, 1, 1, 6, 0, 1, 0, 0]
Because UniFrac is a phylogenetic diversity metric, we need to know which
OTU each count corresponds to, which we'll provide as ``otu_ids``.
>>> otu_ids = ['OTU1', 'OTU2', 'OTU3', 'OTU4', 'OTU5', 'OTU6', 'OTU7',
... 'OTU8']
We also need a phylogenetic tree that relates the OTUs to one another.
>>> from io import StringIO
>>> from skbio import TreeNode
>>> tree = TreeNode.read(StringIO(
... '(((((OTU1:0.5,OTU2:0.5):0.5,OTU3:1.0):1.0):0.0,'
... '(OTU4:0.75,(OTU5:0.5,((OTU6:0.33,OTU7:0.62):0.5'
... ',OTU8:0.5):0.5):0.5):1.25):0.0)root;'))
We can then compute the unweighted UniFrac distance between the samples.
>>> from skbio.diversity.beta import unweighted_unifrac
>>> uu = unweighted_unifrac(u_counts, v_counts, otu_ids, tree)
>>> print(round(uu, 2))
0.37
"""
u_node_counts, v_node_counts, _, _, tree_index =\
_setup_pairwise_unifrac(u_counts, v_counts, otu_ids, tree, validate,
normalized=False, unweighted=True)
return _unweighted_unifrac(u_node_counts, v_node_counts,
tree_index['length'])
@experimental(as_of="0.4.1")
def weighted_unifrac(u_counts, v_counts, otu_ids, tree,
normalized=_normalize_weighted_unifrac_by_default,
validate=True):
""" Compute weighted UniFrac with or without branch length normalization
Parameters
----------
u_counts, v_counts: list, np.array
Vectors of counts/abundances of OTUs for two samples. Must be equal
length.
otu_ids: list, np.array
Vector of OTU ids corresponding to tip names in ``tree``. Must be the
same length as ``u_counts`` and ``v_counts``.
tree: skbio.TreeNode
Tree relating the OTUs in otu_ids. The set of tip names in the tree can
be a superset of ``otu_ids``, but not a subset.
normalized: boolean, optional
If ``True``, apply branch length normalization, which is described in
[1]_. Resulting distances will then be in the range ``[0, 1]``.
validate: bool, optional
If `False`, validation of the input won't be performed. This step can
be slow, so if validation is run elsewhere it can be disabled here.
However, invalid input data can lead to invalid results or error
messages that are hard to interpret, so this step should not be
bypassed if you're not certain that your input data are valid. See
:mod:`skbio.diversity` for the description of what validation entails
so you can determine if you can safely disable validation.
Returns
-------
float
The weighted UniFrac distance between the two samples.
Raises
------
ValueError, MissingNodeError, DuplicateNodeError
If validation fails. Exact error will depend on what was invalid.
See Also
--------
unweighted_unifrac
skbio.diversity
skbio.diversity.beta_diversity
Notes
-----
Weighted UniFrac was originally described in [1]_, which includes a
discussion of unweighted (qualitative) versus weighted (quantitiative)
diversity metrics. Deeper mathemtical discussions of this metric is
presented in [2]_.
If computing weighted UniFrac for multiple pairs of samples, using
``skbio.diversity.beta_diversity`` will be much faster than calling this
function individually on each sample.
This implementation differs from that in PyCogent (and therefore QIIME
versions less than 2.0.0) by imposing a few additional restrictions on the
inputs. First, the input tree must be rooted. In PyCogent, if an unrooted
tree was provided that had a single trifurcating node (a newick convention
for unrooted trees) that node was considered the root of the tree. Next,
all OTU IDs must be tips in the tree. PyCogent would silently ignore OTU
IDs that were not present the tree. To reproduce UniFrac results from
PyCogent with scikit-bio, ensure that your PyCogent UniFrac calculations
are performed on a rooted tree and that all OTU IDs are present in the
tree.
This implementation of weighted UniFrac is the array-based implementation
described in [3]_.
If using large number of samples or a large tree, we advise using the
optimized UniFrac library [4]_.
References
----------
.. [1] Lozupone, C. A., Hamady, M., Kelley, S. T. & Knight, R. Quantitative
and qualitative beta diversity measures lead to different insights into
factors that structure microbial communities. Appl. Environ. Microbiol.
73, 1576-1585 (2007).
.. [2] Lozupone, C., Lladser, M. E., Knights, D., Stombaugh, J. & Knight,
R. UniFrac: an effective distance metric for microbial community
comparison. ISME J. 5, 169-172 (2011).
.. [3] Hamady M, Lozupone C, Knight R. Fast UniFrac: facilitating high-
throughput phylogenetic analyses of microbial communities including
analysis of pyrosequencing and PhyloChip data. ISME J. 4(1):17-27
(2010).
.. [4] https://github.com/biocore/unifrac
Examples
--------
Assume we have the following abundance data for two samples, ``u`` and
``v``, represented as a pair of counts vectors. These counts represent the
number of times specific Operational Taxonomic Units, or OTUs, were
observed in each of the samples.
>>> u_counts = [1, 0, 0, 4, 1, 2, 3, 0]
>>> v_counts = [0, 1, 1, 6, 0, 1, 0, 0]
Because UniFrac is a phylogenetic diversity metric, we need to know which
OTU each count corresponds to, which we'll provide as ``otu_ids``.
>>> otu_ids = ['OTU1', 'OTU2', 'OTU3', 'OTU4', 'OTU5', 'OTU6', 'OTU7',
... 'OTU8']
We also need a phylogenetic tree that relates the OTUs to one another.
>>> from io import StringIO
>>> from skbio import TreeNode
>>> tree = TreeNode.read(StringIO(
... '(((((OTU1:0.5,OTU2:0.5):0.5,OTU3:1.0):1.0):0.0,'
... '(OTU4:0.75,(OTU5:0.5,((OTU6:0.33,OTU7:0.62):0.5'
... ',OTU8:0.5):0.5):0.5):1.25):0.0)root;'))
Compute the weighted UniFrac distance between the samples.
>>> from skbio.diversity.beta import weighted_unifrac
>>> wu = weighted_unifrac(u_counts, v_counts, otu_ids, tree)
>>> print(round(wu, 2))
1.54
Compute the weighted UniFrac distance between the samples including
branch length normalization so the value falls in the range ``[0.0, 1.0]``.
>>> wu = weighted_unifrac(u_counts, v_counts, otu_ids, tree,
... normalized=True)
>>> print(round(wu, 2))
0.33
"""
u_node_counts, v_node_counts, u_total_count, v_total_count, tree_index =\
_setup_pairwise_unifrac(u_counts, v_counts, otu_ids, tree, validate,
normalized=normalized, unweighted=False)
branch_lengths = tree_index['length']
if normalized:
tip_indices = _get_tip_indices(tree_index)
node_to_root_distances = _tip_distances(branch_lengths, tree,
tip_indices)
return _weighted_unifrac_normalized(u_node_counts, v_node_counts,
u_total_count, v_total_count,
branch_lengths,
node_to_root_distances)
else:
return _weighted_unifrac(u_node_counts, v_node_counts,
u_total_count, v_total_count,
branch_lengths)[0]
def _validate(u_counts, v_counts, otu_ids, tree):
_validate_counts_matrix([u_counts, v_counts], suppress_cast=True)
_validate_otu_ids_and_tree(counts=u_counts, otu_ids=otu_ids, tree=tree)
def _setup_pairwise_unifrac(u_counts, v_counts, otu_ids, tree, validate,
normalized, unweighted):
if validate:
_validate(u_counts, v_counts, otu_ids, tree)
# temporarily store u_counts and v_counts in a 2-D array as that's what
# _vectorize_counts_and_tree takes
u_counts = np.asarray(u_counts)
v_counts = np.asarray(v_counts)
counts = np.vstack([u_counts, v_counts])
counts_by_node, tree_index, branch_lengths = \
_vectorize_counts_and_tree(counts, otu_ids, tree)
# unpack counts vectors for single pairwise UniFrac calculation
u_node_counts = counts_by_node[0]
v_node_counts = counts_by_node[1]
u_total_count = u_counts.sum()
v_total_count = v_counts.sum()
return (u_node_counts, v_node_counts, u_total_count, v_total_count,
tree_index)
def _unweighted_unifrac(u_node_counts, v_node_counts, branch_lengths):
"""
Parameters
----------
u_node_counts, v_node_counts : np.array
Vectors indicating presence (value greater than zero) and absence
(value equal to zero) of nodes in two samples, `u` and `v`. Order is
assumed to be the same as in `branch_lengths`.
branch_lengths : np.array
Vector of branch lengths of all nodes (tips and internal nodes) in
postorder representation of their tree.
Returns
-------
float
Unweighted UniFrac distance between samples.
Notes
-----
The count vectors passed here correspond to all nodes in the tree, not
just the tips.
"""
unique_nodes = np.logical_xor(u_node_counts, v_node_counts)
observed_nodes = np.logical_or(u_node_counts, v_node_counts)
unique_branch_length = (branch_lengths * unique_nodes).sum()
observed_branch_length = (branch_lengths * observed_nodes).sum()
if observed_branch_length == 0.0:
# handle special case to avoid division by zero
return 0.0
return unique_branch_length / observed_branch_length
def _weighted_unifrac(u_node_counts, v_node_counts, u_total_count,
v_total_count, branch_lengths):
"""
Parameters
----------
u_node_counts, v_node_counts : np.array
Vectors indicating presence (value greater than zero) and absence
(value equal to zero) of nodes in two samples, `u` and `v`. Order is
assumed to be the same as in `branch_lengths`.
u_total_count, v_total_counts : int
The sum of ``u_node_counts`` and ``v_node_counts`` vectors,
respectively. This could be computed internally, but since this is a
private method and the calling function has already generated these
values, this saves an iteration over each of these vectors.
branch_lengths : np.array
Vector of branch lengths of all nodes (tips and internal nodes) in
postorder representation of their tree.
Returns
-------
float
Weighted UniFrac distance between samples.
np.array of float
Proportional abundance of each node in tree in sample `u`
np.array of float
Proportional abundance of each node in tree in sample `v`
"""
if u_total_count > 0:
# convert to relative abundances if there are any counts
u_node_proportions = u_node_counts / u_total_count
else:
# otherwise, we'll just do the computation with u_node_counts, which
# is necessarily all zeros
u_node_proportions = u_node_counts
if v_total_count > 0:
v_node_proportions = v_node_counts / v_total_count
else:
v_node_proportions = v_node_counts
wu = (branch_lengths *
np.absolute(u_node_proportions - v_node_proportions)).sum()
return wu, u_node_proportions, v_node_proportions
def _weighted_unifrac_normalized(u_node_counts, v_node_counts, u_total_count,
v_total_count, branch_lengths,
node_to_root_distances):
"""
Parameters
----------
u_node_counts, v_node_counts : np.array
Vectors indicating presence (value greater than zero) and absence
(value equal to zero) of nodes in two samples, `u` and `v`. Order is
assumed to be the same as in `branch_lengths`.
u_total_count, v_total_counts : int
The sum of ``u_node_counts`` and ``v_node_counts`` vectors,
respectively. This could be computed internally, but since this is a
private method and the calling function has already generated these
values, this saves an iteration over each of these vectors.
tree: skbio.TreeNode
Tree relating the OTUs.
Returns
-------
float
Normalized weighted UniFrac distance between samples.
Notes
-----
The count vectors passed here correspond to all nodes in the tree, not
just the tips.
"""
if u_total_count == 0.0 and v_total_count == 0.0:
# handle special case to avoid division by zero
return 0.0
u, u_node_proportions, v_node_proportions = _weighted_unifrac(
u_node_counts, v_node_counts, u_total_count, v_total_count,
branch_lengths)
c = _weighted_unifrac_branch_correction(
node_to_root_distances, u_node_proportions, v_node_proportions)
return u / c
def _setup_multiple_unifrac(counts, otu_ids, tree, validate):
if validate:
_validate_otu_ids_and_tree(counts[0], otu_ids, tree)
counts_by_node, tree_index, branch_lengths = \
_vectorize_counts_and_tree(counts, otu_ids, tree)
return counts_by_node, tree_index, branch_lengths
def _setup_multiple_unweighted_unifrac(counts, otu_ids, tree, validate):
""" Create optimized pdist-compatible unweighted UniFrac function
Parameters
----------
counts : 2D array_like of ints or floats
Matrix containing count/abundance data where each row contains counts
of observations in a given sample.
otu_ids: list, np.array
Vector of OTU ids corresponding to tip names in ``tree``. Must be the
same length as ``u_counts`` and ``v_counts``. These IDs do not need to
be in tip order with respect to the tree.
tree: skbio.TreeNode
Tree relating the OTUs in otu_ids. The set of tip names in the tree can
be a superset of ``otu_ids``, but not a subset.
validate: bool, optional
If `False`, validation of the input won't be performed.
Returns
-------
function
Optimized pairwise unweighted UniFrac calculator that can be passed
to ``scipy.spatial.distance.pdist``.
2D np.array of ints, floats
Counts of all nodes in ``tree``.
"""
counts_by_node, _, branch_lengths = \
_setup_multiple_unifrac(counts, otu_ids, tree, validate)
f = functools.partial(_unweighted_unifrac, branch_lengths=branch_lengths)
return f, counts_by_node
def _setup_multiple_weighted_unifrac(counts, otu_ids, tree, normalized,
validate):
""" Create optimized pdist-compatible weighted UniFrac function
Parameters
----------
counts : 2D array_like of ints or floats
Matrix containing count/abundance data where each row contains counts
of observations in a given sample.
otu_ids: list, np.array
Vector of OTU ids corresponding to tip names in ``tree``. Must be the
same length as ``u_counts`` and ``v_counts``. These IDs do not need to
be in tip order with respect to the tree.
tree: skbio.TreeNode
Tree relating the OTUs in otu_ids. The set of tip names in the tree can
be a superset of ``otu_ids``, but not a subset.
validate: bool, optional
If `False`, validation of the input won't be performed.
Returns
-------
function
Optimized pairwise unweighted UniFrac calculator that can be passed
to ``scipy.spatial.distance.pdist``.
2D np.array of ints, floats
Counts of all nodes in ``tree``.
"""
counts_by_node, tree_index, branch_lengths = \
_setup_multiple_unifrac(counts, otu_ids, tree, validate)
tip_indices = _get_tip_indices(tree_index)
if normalized:
node_to_root_distances = _tip_distances(branch_lengths, tree,
tip_indices)
def f(u_node_counts, v_node_counts):
u_total_count = np.take(u_node_counts, tip_indices).sum()
v_total_count = np.take(v_node_counts, tip_indices).sum()
u = _weighted_unifrac_normalized(
u_node_counts, v_node_counts, u_total_count, v_total_count,
branch_lengths, node_to_root_distances)
return u
else:
def f(u_node_counts, v_node_counts):
u_total_count = np.take(u_node_counts, tip_indices).sum()
v_total_count = np.take(v_node_counts, tip_indices).sum()
u, _, _ = _weighted_unifrac(u_node_counts, v_node_counts,
u_total_count, v_total_count,
branch_lengths)
return u
return f, counts_by_node
def _get_tip_indices(tree_index):
tip_indices = np.array([n.id for n in tree_index['id_index'].values()
if n.is_tip()])
return tip_indices
def _weighted_unifrac_branch_correction(node_to_root_distances,
u_node_proportions,
v_node_proportions):
"""Calculates weighted unifrac branch length correction.
Parameters
----------
node_to_root_distances : np.ndarray
1D column vector of branch lengths in post order form. There should be
positions in this vector for all nodes in the tree, but only tips
should be non-zero.
u_node_proportions, v_node_proportions : np.ndarray
Proportional abundace of observations of all nodes in the tree in
samples ``u`` and ``v``, respectively.
u_total_count, v_total_count : float
The sum of the observations in samples ``u`` and ``v``, respectively.
Returns
-------
np.ndarray
The corrected branch lengths
"""
return (node_to_root_distances.ravel() *
(u_node_proportions + v_node_proportions)).sum()
|