Boostrap Consensus Trees¤
The BCT Class¤
BCT
pydantic-model
¤
Bases: BaseModel
The Bootstrap Consensus Tree Class.
Config:
arbitrary_types_allowed:True
Fields:
-
dtm(Optional[Union[ArrayLike, DTM, DataFrame]]) -
metric(Optional[str]) -
method(Optional[str]) -
cutoff(Optional[float]) -
iterations(Optional[int]) -
replace(Optional[str]) -
labels(Optional[Union[list[Union[int, str]], dict[int, str]]]) -
title(Optional[str]) -
layout(Optional[Literal['rectangular', 'fan']]) -
figsize(Optional[tuple[float, float]]) -
label_fontsize(Optional[int]) -
random_seed(Optional[int]) -
fontfamily(Optional[str]) -
label_colors(Optional[Union[str, dict[str, list[str]], None]]) -
linewidth(Optional[float]) -
min_leaf_len(Optional[float]) -
internal_scale(Optional[float]) -
tree(Optional[Tree]) -
fig(Optional[Figure]) -
_last_tree_spec(Optional[tuple[Any, ...]]) -
_last_render_spec(Optional[tuple[Any, ...]])
Validators:
-
_validate_label_colors→label_colors -
_validate_figsize→figsize -
_validate_label_fontsize→label_fontsize
Source code in lexos/cluster/bootstrap_consensus.py
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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 | |
cutoff: Optional[float] = 0.5
pydantic-field
¤
The cutoff value.
dtm: Optional[Union[ArrayLike, DTM, pd.DataFrame]] = None
pydantic-field
¤
The document term matrix.
fig: Optional[Figure] = None
pydantic-field
¤
The figure for the dendrogram.
figsize: Optional[tuple[float, float]] = (10, 10)
pydantic-field
¤
Optional figure size as (width, height) in inches.
fontfamily: Optional[str] = 'sans-serif'
pydantic-field
¤
Font family for leaf labels.
internal_scale: Optional[float] = 0.6
pydantic-field
¤
The scaling factor for internal branches in fan layout.
iterations: Optional[int] = 100
pydantic-field
¤
The number of iterations to run the bootstrap.
label_colors: Optional[Union[str, dict[str, list[str]], None]] = None
pydantic-field
¤
Optional color mapping: 'auto' or dict of hex colors to labels.
label_fontsize: Optional[int] = 12
pydantic-field
¤
Font size for leaf labels in the tree diagram.
layout: Optional[Literal['rectangular', 'fan']] = 'rectangular'
pydantic-field
¤
Tree visualization layout: 'rectangular' or 'fan'.
linewidth: Optional[float] = 1.2
pydantic-field
¤
The width of the tree lines.
method: Optional[str] = 'average'
pydantic-field
¤
The linkage method.
metric: Optional[str] = 'euclidean'
pydantic-field
¤
The distance metric.
min_leaf_len: Optional[float] = 1.5
pydantic-field
¤
The minimum length of leaf branches in fan layout.
random_seed: Optional[int] = None
pydantic-field
¤
Optional seed for the random number generator.
replace: Optional[str] = 'without'
pydantic-field
¤
The replacement method.
title: Optional[str] = 'Bootstrap Consensus Tree Result'
pydantic-field
¤
The title of the dendrogram.
tree: Optional[Tree] = None
pydantic-field
¤
The consensus tree object.
__init__(**data) -> None
¤
Construct the BCT instance and render the bootstrap consensus tree.
Source code in lexos/cluster/bootstrap_consensus.py
linkage_to_newick(matrix: np.ndarray, labels: list[str]) -> str
staticmethod
¤
Convert a linkage matrix to a Newick formatted tree.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
matrix
|
ndarray
|
The linkage matrix. |
required |
labels
|
list[str]
|
Names of the tree node. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The Newick representation of the linkage matrix. |
Source code in lexos/cluster/bootstrap_consensus.py
save(path: Path | str | None) -> None
¤
Save the bootstrap consensus tree result to a file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path | str | None
|
The path to save the file. |
required |
Source code in lexos/cluster/bootstrap_consensus.py
show(layout: str = None) -> Figure
¤
Show the figure if it is hidden.
This is a helper method. You can also reference the figure using BCT.fig.
This will generally display in a Jupyter notebook.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
layout
|
str
|
Optional layout to switch to. Options: "rectangular" or "fan". |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_doc_term_matrix: pd.DataFrame
property
¤
Return a dataframe of the document term matrix.
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: The document term matrix with doc labels as the index and terms as the columns. |
rendering:
show_root_heading: true
heading_level: 3
_document_label_map: dict[int, str]
property
¤
Return a dictionary of document label map.
Returns:
| Type | Description |
|---|---|
dict[int, str]
|
dict[int, str]: A document label map. |
rendering:
show_root_heading: true
heading_level: 3
__init__(**data) -> None
¤
Construct the BCT instance and render the bootstrap consensus tree.
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_serialize_label_colors(value: Optional[str | dict[str, list[str]]]) -> tuple[Any, ...]
staticmethod
¤
Create a stable, comparable representation for label color config.
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_serialize_labels(labels: Optional[Union[list[Union[int, str]], dict[int, str]]]) -> tuple[Any, ...]
staticmethod
¤
Create a stable, comparable representation for labels.
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_dtm_signature() -> tuple[Any, ...]
¤
Create a lightweight signature for dtm identity tracking.
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_tree_spec() -> tuple[Any, ...]
¤
Spec that determines whether the consensus tree must be rebuilt.
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_render_spec() -> tuple[Any, ...]
¤
Spec that determines whether the figure needs redraw.
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_sync_state(*, layout: Optional[str] = None, force_rebuild: bool = False, force_redraw: bool = False) -> bool
¤
Sync tree/figure with current settings.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if the figure was regenerated. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_validate_label_colors(value) -> str
pydantic-validator
¤
Validate that the label colors are valid color strings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
str
|
The label color string. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The validated label color string. |
Raises:
| Type | Description |
|---|---|
LexosException
|
If the label color is not a valid color string. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_validate_figsize(value: tuple[float, float]) -> tuple[float, float]
pydantic-validator
¤
Validate that the figure size is a tuple of two positive numbers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
tuple[float, float]
|
The figure size as (width, height). |
required |
Returns:
| Type | Description |
|---|---|
tuple[float, float]
|
tuple[float, float]: The validated figure size. |
Raises:
| Type | Description |
|---|---|
LexosException
|
If the figure size is not valid. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_validate_label_fontsize(value) -> int
pydantic-validator
¤
Validate that the label font size is a positive integer.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
int
|
The label font size. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
int |
int
|
The validated label font size. |
Raises:
| Type | Description |
|---|---|
LexosException
|
If the font size is not a positive integer. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
linkage_to_newick(matrix: np.ndarray, labels: list[str]) -> str
staticmethod
¤
Convert a linkage matrix to a Newick formatted tree.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
matrix
|
ndarray
|
The linkage matrix. |
required |
labels
|
list[str]
|
Names of the tree node. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The Newick representation of the linkage matrix. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_get_newick_tree(labels: list[str], sample_dtm: pd.DataFrame) -> Tree
¤
Get Newick tree based on a subset of the DTM.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
labels
|
list[str]
|
All file names from the DTM |
required |
sample_dtm
|
DataFrame
|
An 80% subset of the complete DTM |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Tree |
Tree
|
A Biopython Tree object representing the DTM subset |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_get_bootstrap_trees() -> list[Tree]
¤
Do bootstrap on the DTM to get a list of Tree objects.
Returns:
| Type | Description |
|---|---|
list[Tree]
|
list[Tree]: A list of Biopython Tree objects where each tree was based on an 80% subset of the complete DTM. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_get_bootstrap_consensus_tree() -> Tree
¤
Get the consensus tree.
Returns:
| Name | Type | Description |
|---|---|---|
Tree |
Tree
|
The consensus tree of the list of bootstrap trees. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
_get_bootstrap_consensus_tree_fig(layout: str = 'rectangular') -> Figure
¤
Generate a bootstrap consensus tree figure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
layout
|
str
|
Tree visualization style. Options: - "rectangular": Traditional rectangular tree layout - "fan": Circular fan-style tree layout |
'rectangular'
|
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
save(path: Path | str | None) -> None
¤
Save the bootstrap consensus tree result to a file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path | str | None
|
The path to save the file. |
required |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
show(layout: str = None) -> Figure
¤
Show the figure if it is hidden.
This is a helper method. You can also reference the figure using BCT.fig.
This will generally display in a Jupyter notebook.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
layout
|
str
|
Optional layout to switch to. Options: "rectangular" or "fan". |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
The FanTree Class¤
FanTree
pydantic-model
¤
Bases: BaseModel
A class to draw a fan-style tree layout using Biopython's Phylo module.
Config:
arbitrary_types_allowed:True
Fields:
-
tree_obj(Tree) -
title(Optional[str]) -
figsize(Optional[tuple[float, float]]) -
label_fontsize(Optional[int]) -
fontfamily(Optional[str]) -
label_colors(Optional[Union[str, dict[str, list[str]], None]]) -
linewidth(Optional[float]) -
min_leaf_len(Optional[float]) -
internal_scale(Optional[float])
Source code in lexos/cluster/bootstrap_consensus.py
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 | |
figsize: Optional[tuple[float, float]] = (10, 10)
pydantic-field
¤
Optional figure size as (width, height) in inches.
fontfamily: Optional[str] = 'sans-serif'
pydantic-field
¤
Font family for leaf labels.
internal_scale: Optional[float] = 0.6
pydantic-field
¤
The scaling factor for internal branches.
label_colors: Optional[Union[str, dict[str, list[str]], None]] = None
pydantic-field
¤
Optional color mapping: 'auto' or dict of hex colors to labels.
label_fontsize: Optional[int] = 12
pydantic-field
¤
Font size for leaf labels in the tree diagram.
linewidth: Optional[float] = 1.2
pydantic-field
¤
The width of the tree lines.
min_leaf_len: Optional[float] = 1.5
pydantic-field
¤
The minimum length of leaf branches.
title: Optional[str] = 'Bootstrap Consensus Tree Result'
pydantic-field
¤
The title of the dendrogram.
tree_obj: Tree
pydantic-field
¤
The tree to draw.
draw() -> Figure
¤
Draw fan-style tree layout.
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the fan tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
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 | |
rendering:
show_root_heading: true
heading_level: 3
draw() -> Figure
¤
Draw fan-style tree layout.
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the fan tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
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 | |
rendering:
show_root_heading: true
heading_level: 3
_normalize_branches(clade: Clade, use_proportional_branches: bool = True) -> None
¤
Recursively updates branch lengths directly on Biopython Clade objects.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
clade
|
Clade
|
The current clade being processed. |
required |
use_proportional_branches
|
bool
|
Whether to scale internal branches based on child leaf counts to spread dense structures out and prevent overlapping. |
True
|
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
The RectangularTree Class¤
RectangularTree
pydantic-model
¤
Bases: BaseModel
A class to draw a rectangular tree layout using Biopython's Phylo module.
Config:
arbitrary_types_allowed:True
Fields:
-
tree_obj(Tree) -
labels(Union[list[Union[int, str]], dict[int, str]]) -
label_colors(Optional[Union[str, dict[str, list[str]], None]]) -
title(Optional[str]) -
figsize(Optional[tuple[float, float]]) -
label_fontsize(Optional[int]) -
fontfamily(Optional[str])
Source code in lexos/cluster/bootstrap_consensus.py
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 | |
figsize: Optional[tuple[float, float]] = (10, 10)
pydantic-field
¤
Optional figure size as (width, height) in inches.
fontfamily: Optional[str] = 'sans-serif'
pydantic-field
¤
Font family for leaf labels.
label_colors: Optional[Union[str, dict[str, list[str]], None]] = None
pydantic-field
¤
Optional color mapping: 'auto' or dict of hex colors to labels.
label_fontsize: Optional[int] = 12
pydantic-field
¤
Font size for leaf labels in the tree diagram.
labels: Union[list[Union[int, str]], dict[int, str]]
pydantic-field
¤
The document labels.
title: Optional[str] = 'Bootstrap Consensus Tree Result'
pydantic-field
¤
The title of the dendrogram.
tree_obj: Tree
pydantic-field
¤
The tree to draw.
draw() -> Figure
¤
Draw traditional rectangular tree layout.
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the rectangular tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
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 | |
rendering:
show_root_heading: true
heading_level: 3
draw() -> Figure
¤
Draw traditional rectangular tree layout.
Returns:
| Name | Type | Description |
|---|---|---|
Figure |
Figure
|
The matplotlib figure containing the rectangular tree visualization. |
Source code in lexos/cluster/bootstrap_consensus.py
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 | |
rendering:
show_root_heading: true
heading_level: 3
Helper Functions¤
generate_colors(n: int) -> list[str]
¤
Generate a list of n distinct colors.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n
|
int
|
The number of colors to generate. |
required |
Returns:
| Type | Description |
|---|---|
list[str]
|
list[str]: A list of n distinct colors. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
assign_auto_colors(tree: Tree) -> dict[str, str]
¤
Assign colors to leaf labels based on biopython Clade structure.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tree
|
Tree
|
The tree to assign colors for. |
required |
Returns:
| Type | Description |
|---|---|
dict[str, str]
|
dict[str, str]: A mapping of leaf label names to hex color strings. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3
resolve_label_colors(tree: Tree, label_colors: Optional[str | dict[str, list[str]]], base_color: str) -> dict[str, str]
¤
Resolve leaf label colors based on mapping preference.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tree
|
Tree
|
The tree object. |
required |
label_colors
|
Optional[str | dict[str, list[str]]]
|
Mapping preference. - "auto": Assign colors automatically by clade. - dict: Custom mapping of hex colors to lists of labels. - None: Use base_color for all. |
required |
base_color
|
str
|
The default color to use. |
required |
Returns:
| Type | Description |
|---|---|
dict[str, str]
|
dict[str, str]: A mapping of label names to hex colors. |
Source code in lexos/cluster/bootstrap_consensus.py
rendering:
show_root_heading: true
heading_level: 3