Enrichment
Mixins for enrichment analysis using STRING/UniProt.
Provides methods for STRING-based functional and protein–protein interaction (PPI) enrichment.
This mixin includes utilities for:
- Running functional enrichment on differentially expressed or user-supplied gene lists.
- Performing STRING PPI enrichment to identify interaction networks.
- Generating STRING network visualization links and embedded SVGs.
- Listing and accessing enrichment results stored in
.stats.
Methods:
| Name | Description |
|---|---|
enrichment_functional |
Runs STRING functional enrichment on DE results or a custom gene list. |
enrichment_ppi |
Runs STRING PPI enrichment on a user-supplied gene or accession list. |
list_enrichments |
Lists available enrichment results and DE comparisons. |
plot_enrichment_svg |
Displays a STRING enrichment SVG inline or saves it to file. |
get_string_mappings |
Maps UniProt accessions to STRING IDs using the STRING API. |
resolve_to_accessions |
Resolves gene names or mixed inputs to accessions using internal mappings. |
get_string_network_link |
Generates a direct STRING network URL for visualization. |
Source code in src/scpviz/pAnnData/enrichment.py
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 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 | |
enrichment_functional
enrichment_functional(genes=None, from_de=True, top_n=150, score_col='significance_score', gene_col='Genes', de_key='de_results', store_key=None, species=None, background=None, debug=False, **kwargs)
Run functional enrichment analysis using STRING on a gene list.
This method performs ranked or unranked enrichment analysis using STRING's API.
It supports both differential expression-based analysis (up- and down-regulated genes)
and custom gene lists provided by the user. Enrichment results are stored in
.stats["functional"] for later access and plotting.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
genes |
list of str
|
List of gene symbols to analyze. Ignored if |
None
|
from_de |
bool
|
If True (default), selects genes from stored differential expression results. |
True
|
top_n |
int
|
Number of top-ranked genes to use when |
150
|
score_col |
str
|
Column name in the DE table to rank genes by (default is |
'significance_score'
|
gene_col |
str
|
Column name in |
'Genes'
|
de_key |
str
|
Key to retrieve stored DE results from |
'de_results'
|
store_key |
str
|
Custom key to store enrichment results. Ignored when |
None
|
species |
str
|
Organism name or NCBI taxonomy ID. If None, inferred from STRING response. |
None
|
background |
str or list of str
|
Background gene list to use for enrichment.
|
None
|
debug |
bool
|
If True, prints API request info and diagnostic messages. |
False
|
**kwargs |
Additional keyword arguments passed to the STRING enrichment API. |
{}
|
Returns:
| Type | Description |
|---|---|
|
dict or pd.DataFrame:
|
Example
Run differential expression, then perform STRING enrichment on top-ranked genes:
case1 = {'cellline': 'AS', 'treatment': 'sc'} # legacy style: class_type = ["group", "condition"]
case2 = {'cellline': 'BE', 'treatment': 'sc'} # legacy style: values = [["GroupA", "Treatment1"], ["GroupA", "Control"]]
pdata_nb.de(values = case_values) # or legacy style: pdata.de(classes=class_type, values=values)
pdata.list_enrichments() # list available DE result keys
pdata.enrichment_functional(from_de=True, de_key="GroupA_Treatment1 vs GroupA_Control")
Perform enrichment on a custom list of genes:
Note
Internally uses resolve_to_accessions() and get_string_mappings(), and stores results
in .stats["functional"]. Results can be accessed or visualized via plot_enrichment_svg()
or by visiting the linked STRING URLs.
Source code in src/scpviz/pAnnData/enrichment.py
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 | |
enrichment_ppi
Run STRING PPI (protein–protein interaction) enrichment on a user-supplied gene or accession list.
This method maps the input gene names or UniProt accessions to STRING IDs, infers the species
if not provided, and submits the list to STRING's PPI enrichment endpoint. Results are stored
in .stats["ppi"] for later retrieval or visualization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
genes |
list of str
|
A list of gene names or UniProt accessions to analyze. |
required |
species |
int or str
|
NCBI taxonomy ID (e.g., 9606 for human). If None, inferred from STRING mappings. |
None
|
store_key |
str
|
Key to store the enrichment result under |
None
|
Returns:
| Type | Description |
|---|---|
|
pd.DataFrame: DataFrame of STRING PPI enrichment results. |
Example
Run differential expression, then perform STRING PPI enrichment on significant genes:
class_type = ["group", "condition"]
values = [["GroupA", "Treatment1"], ["GroupA", "Control"]]
pdata.de(classes=class_type, values=values)
pdata.list_enrichments()
sig_genes = pdata.stats["de_results"]["GroupA_Treatment1 vs GroupA_Control"]
sig_genes = sig_genes[sig_genes["significance"] != "not significant"]["Genes"].dropna().tolist()
pdata.enrichment_ppi(genes=sig_genes)
Source code in src/scpviz/pAnnData/enrichment.py
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 | |
get_string_mappings
Resolve STRING IDs for UniProt accessions with a 2-step strategy: 1) Use UniProt stream (fields: xref_string) to fill cache quickly. 2) For any still-missing rows, query STRING get_string_ids, batched by organism_id.
This method retrieves corresponding STRING identifiers for a list of UniProt accessions
and stores the result in self.prot.var["STRING_id"] for downstream use.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
identifiers |
list of str
|
List of UniProt accession IDs to map. |
required |
batch_size |
int
|
Number of accessions to include in each API query (default is 300). |
100
|
debug |
bool
|
If True, prints progress and response info. |
False
|
Returns:
| Type | Description |
|---|---|
|
pd.DataFrame: Mapping table with columns: |
Note
This is a helper method used primarily by enrichment_functional() and enrichment_ppi().
Source code in src/scpviz/pAnnData/enrichment.py
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 | |
get_string_network_link
Generate a direct STRING network URL to visualize protein interactions online.
This method constructs a STRING website link to view a network of proteins, using either a list of STRING IDs or a key from previously stored enrichment results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key |
str
|
Key from |
None
|
string_ids |
list of str
|
List of STRING identifiers to include in the network. |
None
|
species |
int or str
|
NCBI taxonomy ID (e.g., 9606 for human). Required if not using a stored key. |
None
|
show_labels |
bool
|
If True (default), node labels will be shown in the network view. |
True
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
URL to open the network in the STRING web interface. |
Example
Get a STRING network link for a stored enrichment result:
Source code in src/scpviz/pAnnData/enrichment.py
list_enrichments
List available STRING enrichment results and unprocessed DE contrasts.
This method prints available functional and PPI enrichment entries stored in
.stats["functional"] and .stats["ppi"], as well as DE comparisons in
.stats["de_results"] that have not yet been analyzed.
Returns:
| Type | Description |
|---|---|
|
None |
Example
List enrichment results stored after running functional or PPI enrichment:
Source code in src/scpviz/pAnnData/enrichment.py
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 | |
plot_enrichment_svg
Display STRING enrichment SVG inline in a Jupyter notebook.
This method fetches and renders a STRING-generated SVG for a previously completed functional enrichment result. Optionally, the SVG can also be saved to disk.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key |
str
|
Enrichment result key from |
required |
direction |
str
|
Direction of DE result, either |
None
|
category |
str
|
STRING enrichment category to filter by (e.g., |
None
|
save_as |
str
|
If provided, saves the retrieved SVG to the given file path. |
None
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Display a STRING enrichment network for a user-supplied gene list:
Supported STRING Enrichment Categories
The following category IDs are supported for functional enrichment.
More details are available on the STRING API documentation site.
| Category ID | Description |
|---|---|
| Process | Biological Process (Gene Ontology) |
| Function | Molecular Function (Gene Ontology) |
| Component | Cellular Component (Gene Ontology) |
| Keyword | Annotated Keywords (UniProt) |
| KEGG | KEGG Pathways |
| RCTM | Reactome Pathways |
| HPO | Human Phenotype (Monarch) |
| MPO | Mammalian Phenotype Ontology (Monarch) |
| DPO | Drosophila Phenotype (Monarch) |
| WPO | C. elegans Phenotype Ontology (Monarch) |
| ZPO | Zebrafish Phenotype Ontology (Monarch) |
| FYPO | Fission Yeast Phenotype Ontology (Monarch) |
| Pfam | Protein Domains (Pfam) |
| SMART | Protein Domains (SMART) |
| InterPro | Protein Domains and Features (InterPro) |
| PMID | Reference Publications (PubMed) |
| NetworkNeighborAL | Local Network Cluster (STRING) |
| COMPARTMENTS | Subcellular Localization (COMPARTMENTS) |
| TISSUES | Tissue Expression (TISSUES) |
| DISEASES | Disease–gene Associations (DISEASES) |
| WikiPathways | WikiPathways |
Note
The key must correspond to an existing entry in .stats["functional"], created via
enrichment_functional().
Source code in src/scpviz/pAnnData/enrichment.py
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 | |
resolve_to_accessions
Convert gene names or accessions into standardized UniProt accession IDs.
This method resolves input items using the internal gene-to-accession map,
ensuring all returned entries are accessions present in the .prot object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mixed_list |
list of str
|
A list containing gene names and/or UniProt accessions. |
required |
Returns:
| Type | Description |
|---|---|
|
list of str: List of resolved UniProt accession IDs. |
Note
This function is similar to utils.resolve_accessions() but operates in the context
of the current pAnnData object and its internal gene mappings.
Todo
Add example comparing results from resolve_to_accessions() and utils.resolve_accessions().