B cell Lineage Tree¶
A class to model B cell lineage trees.
Attributes:
Name | Type | Description |
---|---|---|
clonotype |
str
|
The name of the clonotype. |
tree |
BaseTree
|
The rooted tree topology. |
csr_obj |
float
|
The current CSR likelihood of the Lineage tree (default: 0). |
isotype |
dict
|
The isotype labels of the Lineage tree nodes. |
shm_obj |
float
|
The current SHM Parsimony score of the Lineage tree (default: 0). |
sequences |
dict
|
The BCR sequences of the Lineage tree nodes. |
Notes
A B cell lineage tree is a rooted tree with nodes labeled by BCR sequences (concatenated heavy and light chain) and isotypes. The somatic hypermutation (SHM) parsimony score is the total number of base substitutions within the sequences, and the class switch (CSR) likelihood is the likelihood of the isotype labels given an isotype transition probability matrix.
Source code in tribal/lineage_tree.py
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 |
|
__eq__(__value)
¶
Check if two lineage tree items have the same objective score.
Source code in tribal/lineage_tree.py
62 63 64 65 |
|
__lt__(__value)
¶
Check if a LineageTree is less than another.
Source code in tribal/lineage_tree.py
67 68 69 70 |
|
__post_init__()
¶
Initialize the objective tuple and root.
Source code in tribal/lineage_tree.py
50 51 52 53 |
|
__str__()
¶
To string method.
Source code in tribal/lineage_tree.py
72 73 74 75 76 77 78 |
|
ancestral_sequence_reconstruction(alignment, alphabet=('A', 'C', 'G', 'T', 'N', '-'), cost_function=None)
¶
Infer the ancestral BCR sequences of the internal nodes given an alignment.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
alignment |
dict
|
a dictionary with leaf labels and root id as keys and the BCR sequence as value. |
required |
alphabet |
tuple
|
the valid alphabet for BCR sequences, default: ("A", "C", "G", "T","N", "-") |
('A', 'C', 'G', 'T', 'N', '-')
|
cost_function |
dict | None
|
the cost function for substitution of a single nucleotide base. If None, the standard 0/1 cost function is used for matches and mismatches. If dictionary all pairs of the elements in the alpabet should be be includes in the keys. |
None
|
Examples:
Here is an example of how to reconstruct ancestral sequences::
from tribal import clonotypes, LineageTree
id = "Clonotype_1036"
clonotype = clonotypes[id]
forest = clonotype.get_forest()
lt = LineageTree(id=id, tree = forest[0])
shm_score, sequences = lt.ancestral_sequence_reconstruction(clonotype.alignment)
print(lt)
Returns:
Type | Description |
---|---|
float
|
a float with the somatic hypermutation (SHM) parsimony score for the lineage tree |
dict
|
a dictionary containing the BCR sequence labels of the lineage tree |
Source code in tribal/lineage_tree.py
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 |
|
children(n)
¶
Identify the set of children of a specified node.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n |
str
|
ID of the query node. |
required |
Returns:
Type | Description |
---|---|
A list of children of node `n`.
|
|
Source code in tribal/lineage_tree.py
347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
|
compute_csr_likelihood(transmat)
¶
Compute CSR likelihood of a lineage tree for a given isotype transition probability matrix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
transmat |
array
|
The isotype transition probability used to compute the CSR likelihood. |
required |
Returns:
Type | Description |
---|---|
The class switch recombination (CSR) likelihood.
|
|
Source code in tribal/lineage_tree.py
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 |
|
draw(fname, isotype_encoding=None, show_legend=False, show_labels=True, hide_underscore=True, color_encoding=None, dot=False)
¶
Visualization of the current B cell lineage tree saves as a png or pdf.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fname |
str
|
The filename where the visualization should be saved. |
required |
isotype_encoding |
list
|
The list of the isotype labels to use. |
None
|
show_legend |
bool
|
Optionally display the legend of the isotype colors (default=True). |
False
|
show_labels |
bool
|
label the nodes by the sequence label |
True
|
hide_underscore |
bool
|
internal nodes that undergo refinement will have an underscore and copy number appended to the label. Setting this to true hides the underscore during visualization and retains only the original label. |
True
|
color_encoding |
dict
|
optional dictionary that maps isotype encoding to a color, if None, the default color palette is used. |
None
|
dot |
bool
|
if the file should be saved as a dot file, otherwise it will be saved as a png or pdf, depending on the file exentsion of fname |
False
|
Source code in tribal/lineage_tree.py
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 |
|
get_edge_dataframe()
¶
Obtain the edge list of the lineage tree as a pandas.DataFrame.
Source code in tribal/lineage_tree.py
411 412 413 |
|
get_id()
¶
Get the internal id of the tree topology. Useful for mapping refined trees back the to the unrefined tree in the parsimony forest.
Returns:
Type | Description |
---|---|
int
|
the internal id of the tree topology |
Source code in tribal/lineage_tree.py
126 127 128 129 130 131 132 133 134 |
|
get_leafs()
¶
Identify the leafset of the lineage tree.
Returns:
Type | Description |
---|---|
the leafset of the lineage tree.
|
|
Source code in tribal/lineage_tree.py
367 368 369 370 371 372 373 374 375 376 |
|
get_parents()
¶
Identify the part of each node in the lineage tree.
Returns:
Type | Description |
---|---|
a mapping of each node in the lineage tree to its parent node.
|
|
Source code in tribal/lineage_tree.py
378 379 380 381 382 383 384 385 386 |
|
is_leaf(n)
¶
Check if node is a leaf.
Source code in tribal/lineage_tree.py
362 363 364 |
|
isotype_parsimony(isotype_labels, transmat)
¶
Infer the isotype of the B cell lineage tree using weighted parsimony.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
isotype_labels |
dict
|
a dictionary with leaf labels and root id as keys and isotypes as values. |
required |
transmat |
array
|
the isotype transition probability used to compute the CSR likelihood. |
required |
Examples:
Here is an example of how to infer isotypes::
from tribal import clonotypes, probabilities, LineageTree
id = "Clonotype_1036"
clonotype = clonotypes[id]
forest = clonotype.get_forest()
lt = LineageTree(id=id, tree = forest[0] )
csr_likelihood, isotypes = lt.isotype_parsimony(isotype_labels= clonotype.isotypes,
transmat=probabilities )
print(lt)
Returns:
Name | Type | Description |
---|---|---|
csr_obj |
float
|
a float with the class switch recombination likelihood score for the lineage tree. |
isotypes |
dict
|
a dictionary containing the isotypes of the lineage tree. |
Source code in tribal/lineage_tree.py
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 |
|
parent(n)
¶
Identify the parent of a specified node.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n |
id of query node. |
required |
Returns:
Type | Description |
---|---|
the parent of query node n.
|
|
Source code in tribal/lineage_tree.py
333 334 335 336 337 338 339 340 341 342 343 344 345 |
|
postorder_traversal()
¶
Perform a postorder traversal of the lineage tree.
Source code in tribal/lineage_tree.py
324 325 326 |
|
preorder_traversal()
¶
Perform a preorder traversal of the lineage tree.
Source code in tribal/lineage_tree.py
329 330 331 |
|
refinement(isotype_labels, transmat)
¶
Solves the most parsimonious tree refinement problem (MPTR).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
isotype_labels |
dict
|
A dictionary with leaf labels and root id as keys and isotypes as values. |
required |
transmat |
array
|
The isotype transition probability used to compute the CSR likelihood. |
required |
Examples:
Here is an example of how to refine a lineage tree:
from tribal import clonotypes, probabilities, LineageTree
id = "Clonotype_1036"
clonotype = clonotypes[id]
forest = clonotype.get_forest()
lt = LineageTree(id=id, tree=forest[0])
csr_likelihood, isotypes = lt.refinement(isotype_labels=clonotype.isotypes, transmat=probabilities)
print(lt)
Returns:
Type | Description |
---|---|
float
|
A float with the class switch recombination likelihood score for the lineage tree. |
dict
|
A dictionary containing the isotypes of the lineage tree. |
Source code in tribal/lineage_tree.py
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 |
|
save_edges(fname)
¶
Write the edge list of a lineage tree to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fname |
str
|
filename to where edge list should be saved |
required |
Source code in tribal/lineage_tree.py
400 401 402 403 404 405 406 407 408 |
|
save_tree(fname)
¶
Write the parent dictionary of the lineage tree to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fname |
str
|
filename where the file should be saved |
required |
Source code in tribal/lineage_tree.py
389 390 391 392 393 394 395 396 397 398 |
|
to_pickle(fname)
¶
Pickle the B cell lineage tree.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fname |
str
|
the path to where the pickled object should be saved, |
required |
Source code in tribal/lineage_tree.py
80 81 82 83 84 85 86 87 88 89 |
|
write(outpath, isotype_encoding=None, tree_label=None)
¶
Write the lineage tree data to files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
outpath |
str
|
the path to file the files should be written. |
required |
isotype_encoding |
list
|
the ordered isotype labels |
None
|
Source code in tribal/lineage_tree.py
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 |
|