Documentation for the utils modules
scprint2.utils.sinkhorn
Classes:
| Name | Description |
|---|---|
SinkhornDistance |
|
SinkhornDistance
Bases: Module
SinkhornDistance Initialize the SinkhornDistance class
| Parameters: |
|
|---|
Methods:
| Name | Description |
|---|---|
M |
Modified cost for logarithmic updates |
ave |
Barycenter subroutine, used by kinetic acceleration through extrapolation. |
forward |
forward Compute the Sinkhorn distance between two measures with cost matrix c |
Source code in scprint2/utils/sinkhorn.py
8 9 10 11 12 13 14 15 16 17 18 19 20 | |
M
Modified cost for logarithmic updates
Source code in scprint2/utils/sinkhorn.py
99 100 101 102 | |
ave
staticmethod
Barycenter subroutine, used by kinetic acceleration through extrapolation.
Source code in scprint2/utils/sinkhorn.py
104 105 106 107 | |
forward
forward Compute the Sinkhorn distance between two measures with cost matrix c
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/sinkhorn.py
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 | |
scprint2.utils.utils
Functions:
| Name | Description |
|---|---|
add_points |
parts of volcano plot |
category_str2int |
category_str2int converts a list of category strings to a list of category integers. |
correlationMatrix |
Make an interactive correlation matrix from an array using bokeh |
createFoldersFor |
will recursively create folders if needed until having all the folders required to save the file in this filepath |
fileToList |
loads an input file with a\n b\n.. into a list [a,b,..] |
get_free_gpu |
get_free_gpu finds the GPU with the most free memory using nvidia-smi. |
get_git_commit |
get_git_commit gets the current git commit hash. |
heatmap |
Make an interactive heatmap from a dataframe using bokeh |
inf_loop |
wrapper function for endless data loader. |
isnotebook |
check whether excuting in jupyter notebook. |
listToFile |
listToFile loads a list with [a,b,..] into an input file a\n b\n.. |
prepare_device |
setup GPU device if available. get gpu device indices which are used for DataParallel |
run_command |
run_command runs a command in the shell and prints the output. |
selector |
Part of Volcano plot: A function to separate tfs from everything else |
set_seed |
set random seed. |
subset_h5ad_by_format |
Create new anndata object according to slot info specifications. |
volcano |
Make an interactive volcano plot from Differential Expression analysis tools outputs |
add_points
parts of volcano plot
Source code in scprint2/utils/utils.py
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 | |
category_str2int
category_str2int converts a list of category strings to a list of category integers.
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/utils.py
105 106 107 108 109 110 111 112 113 114 115 116 117 | |
correlationMatrix
Make an interactive correlation matrix from an array using bokeh
data: arrayLike of int / float/ bool of size(namesval) or (namesnames) names: list[str] of names for each rows colors: list[int] of size(names) a color for each names (good to display clusters) pvals: arraylike of int / float/ bool of size(namesval) or (namesnames) with the corresponding pvalues maxokpval: float threshold when pvalue is considered good. otherwise lowers the size of the square until 10-3 when it disappears other: arrayLike of int / float/ bool of size(namesval) or (namesnames), an additional information matrix that you want ot display with opacity whereas correlations willl be displayed with title: str the plot title dataIsCorr: bool if not true, we will compute the corrcoef of the data array invert: bool whether or not to invert the matrix before running corrcoef size: int the plot size folder: str of folder location where to save the plot, won't save if empty interactive: bool whether or not to make the plot interactive (else will use matplotlib) maxval: float clamping coloring up to maxval minval: float clamping coloring down to minval
the bokeh object if interactive else None
Source code in scprint2/utils/utils.py
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 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 | |
createFoldersFor
will recursively create folders if needed until having all the folders required to save the file in this filepath
Source code in scprint2/utils/utils.py
94 95 96 97 98 99 100 101 102 | |
fileToList
loads an input file with a\n b\n.. into a list [a,b,..]
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/utils.py
49 50 51 52 53 54 55 56 57 58 59 60 61 | |
get_free_gpu
get_free_gpu finds the GPU with the most free memory using nvidia-smi.
| Returns: |
|
|---|
Source code in scprint2/utils/utils.py
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 | |
get_git_commit
get_git_commit gets the current git commit hash.
| Returns: |
|
|---|
Source code in scprint2/utils/utils.py
165 166 167 168 169 170 171 172 | |
heatmap
Make an interactive heatmap from a dataframe using bokeh
data: dataframe of int / float/ bool of size(names1names2) colors: list[int] of size(names) a color for each names (good to display clusters) pvals: arraylike of int / float/ bool of size(namesval) or (namesnames) with the corresponding pvalues maxokpval: float threshold when pvalue is considered good. otherwise lowers the size of the square until 10*-3 when it disappears title: str the plot title size: int the plot size folder: str of folder location where to save the plot, won't save if empty interactive: bool whether or not to make the plot interactive (else will use matplotlib) maxval: float clamping coloring up to maxval minval: float clamping coloring down to minval
the bokeh object if interactive else None
Source code in scprint2/utils/utils.py
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 | |
inf_loop
wrapper function for endless data loader.
Source code in scprint2/utils/utils.py
193 194 195 196 | |
isnotebook
check whether excuting in jupyter notebook.
Source code in scprint2/utils/utils.py
120 121 122 123 124 125 126 127 128 129 130 131 | |
listToFile
listToFile loads a list with [a,b,..] into an input file a\n b\n..
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/utils.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |
prepare_device
setup GPU device if available. get gpu device indices which are used for DataParallel
Source code in scprint2/utils/utils.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |
run_command
run_command runs a command in the shell and prints the output.
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/utils.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | |
selector
Part of Volcano plot: A function to separate tfs from everything else
Source code in scprint2/utils/utils.py
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |
set_seed
set random seed.
Source code in scprint2/utils/utils.py
83 84 85 86 87 88 89 | |
subset_h5ad_by_format
Create new anndata object according to slot info specifications.
Arguments: adata -- An AnnData object to subset (required) config -- A Viash config object as read by openproblems.project.read_viash_config (required) arg_name -- The name of the argument in the config file that specifies the output format (required) field_rename_dict -- A mapping between the slots of the source h5ad and the slots of the destination h5ad. Example of slot_mapping: ``` slot_mapping = { "layers": { "counts": par["layer_counts"], }, "obs": { "cell_type": par["obs_cell_type"], "batch": par["obs_batch"], } }
Source code in scprint2/utils/utils.py
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 | |
volcano
Make an interactive volcano plot from Differential Expression analysis tools outputs
data: a df with rows genes and cols [log2FoldChange, pvalue, gene_id]
folder: str of location where to save the plot, won't save if empty
tohighlight: list[str] of genes to highlight in the plot
tooltips: list[tuples(str,str)] if user wants tot specify another bokeh tooltip
title: str plot title
xlabel: str if user wants to specify the title of the x axis
ylabel: str if user wants tot specify the title of the y axis
maxvalue: float the max -log2(pvalue authorized usefull when managing inf vals)
searchbox: bool whether or not to add a searchBox to interactively highlight genes
logfoldtohighlight: float min logfoldchange when to diplay points
pvaltohighlight: float min pvalue when to diplay points
showlabels: bool whether or not to show a text above each datapoint with its label information
The bokeh object
Source code in scprint2/utils/utils.py
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 | |
scprint2.utils.get_seq
Functions:
| Name | Description |
|---|---|
load_fasta_species |
Downloads and caches FASTA files for a given species from the Ensembl FTP server. |
seq |
Fetch nucleotide or amino acid sequence (FASTA) of a gene (and all its isoforms) or transcript by Ensembl, WormBase, or FlyBase ID. |
subset_fasta |
subset_fasta: creates a new fasta file with only the sequence which names contain one of gene_names |
load_fasta_species
Downloads and caches FASTA files for a given species from the Ensembl FTP server.
| Parameters: |
|
|---|
Source code in scprint2/utils/get_seq.py
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 | |
seq
Fetch nucleotide or amino acid sequence (FASTA) of a gene (and all its isoforms) or transcript by Ensembl, WormBase, or FlyBase ID.
| Parameters: |
|
|---|
| Returns: |
|
|---|
| Raises: |
|
|---|
Source code in scprint2/utils/get_seq.py
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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 | |
subset_fasta
subset_fasta: creates a new fasta file with only the sequence which names contain one of gene_names
| Parameters: |
|
|---|
Returns: set: A set of gene names that were found and included in the subsetted FASTA file.
| Raises: |
|
|---|
Source code in scprint2/utils/get_seq.py
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 | |
scprint2.utils.graph_refinement
Graph-regularized logit refinement implementation.
This module implements the GRIT (Graph-Regularized logIT) refinement method for improving cell type predictions using graph structure.
Functions:
| Name | Description |
|---|---|
build_knn_graph |
Build a k-nearest neighbor graph and store it in adata.obsp. |
graph_regularized_logit_refinement |
Refine logits using graph-regularized optimization. |
test_graph_refinement |
Test function for graph refinement. |
zero_shot_annotation_with_refinement |
Perform zero-shot cell type annotation with graph refinement. |
build_knn_graph
Build a k-nearest neighbor graph and store it in adata.obsp.
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/graph_refinement.py
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 | |
graph_regularized_logit_refinement
Refine logits using graph-regularized optimization. Optimized version that solves for all classes simultaneously.
This function implements the optimization problem: P̃ = arg min_P ||P - P₀||²_F + λ Tr(P^T L P)
where P₀ are the initial logits, L is the graph Laplacian, and λ controls the strength of regularization.
The solution has a closed form: P̃ = (I + λL)⁻¹P₀
| Parameters: |
|
|---|
| Returns: |
|
|---|
| Raises: |
|
|---|
Source code in scprint2/utils/graph_refinement.py
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 | |
test_graph_refinement
Test function for graph refinement.
Source code in scprint2/utils/graph_refinement.py
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 | |
zero_shot_annotation_with_refinement
Perform zero-shot cell type annotation with graph refinement.
This function first refines the logits using graph regularization, then performs argmax to get final predictions.
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in scprint2/utils/graph_refinement.py
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 | |