Analysis
Mixins for statistical analysis and biological interpretation.
Provides core statistical and dimensionality reduction tools for analyzing single-cell proteomics data.
This mixin includes functionality for:
- Differential expression (DE) analysis using t-tests, Mann–Whitney U, or Wilcoxon signed-rank tests
- Ranking proteins or peptides by abundance within groups
- Coefficient of Variation (CV) computation
- Missing value imputation (global or group-wise) using statistical or KNN-based methods
- Dimensionality reduction and clustering using PCA, UMAP, and Leiden
- Neighbor graph construction for downstream manifold learning
- Cleaning
.Xmatrices by replacing NaNs - Row-wise normalization across multiple strategies
All functions are compatible with both protein- and peptide-level data and support use of AnnData layers.
Methods:
| Name | Description |
|---|---|
cv |
Compute coefficient of variation (CV) for each feature across or within sample groups. |
de |
Perform differential expression analysis between two sample groups. |
rank |
Rank features by mean abundance, compute standard deviation and numeric rank. |
impute |
Impute missing values globally or within groups using mean, median, min, or KNN. |
neighbor |
Compute neighborhood graph using PCA (or another embedding) for clustering or UMAP. |
leiden |
Run Leiden clustering on neighborhood graph, storing labels in |
umap |
Perform UMAP dimensionality reduction using previously computed neighbors. |
pca |
Run PCA on normalized expression matrix, handling NaN exclusion and reinsertion of features. |
clean_X |
Replace NaNs in |
_normalize_helper |
Internal helper to compute per-sample scaling across multiple normalization methods. |
Source code in src/scpviz/pAnnData/analysis.py
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 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 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 | |
clean_X
clean_X(on='prot', inplace=True, set_to=0, layer=None, to_sparse=False, backup_layer='X_preclean', verbose=True)
Replace NaNs in .X or a specified layer with a given value (default: 0).
Optionally backs up the original data to a layer (default: 'X_preclean') before overwriting.
Typically used to prepare data for scanpy or sklearn functions that cannot handle missing values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on |
str
|
Target data to clean, either |
'prot'
|
inplace |
bool
|
If True, update |
True
|
set_to |
float
|
Value to replace NaNs with (default: 0.0). |
0
|
layer |
str or None
|
If specified, applies to |
None
|
to_sparse |
bool
|
If True, returns a sparse matrix. |
False
|
backup_layer |
str or None
|
If |
'X_preclean'
|
verbose |
bool
|
Whether to print summary messages. |
True
|
Returns:
| Type | Description |
|---|---|
|
np.ndarray: Cleaned matrix if |
Source code in src/scpviz/pAnnData/analysis.py
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 | |
cv
Compute the coefficient of variation (CV) for each feature across sample groups.
This method calculates CV for each protein or peptide across all samples in each group,
storing the result as new columns in .var, one per group.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
classes |
str or list of str
|
Sample-level class or list of classes used to define groups. |
None
|
on |
str
|
Whether to compute CV on "protein" or "peptide" data. |
'protein'
|
layer |
str
|
Data layer to use for computation (default is "X"). |
'X'
|
debug |
bool
|
If True, prints debug information while filtering groups. |
False
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Compute per-group CV for proteins using a custom normalization layer:
Source code in src/scpviz/pAnnData/analysis.py
de
de(values=None, class_type=None, method='ttest', layer='X', pval=0.05, log2fc=1.0, fold_change_mode='mean')
Perform differential expression (DE) analysis on proteins across sample groups.
This method compares protein abundance between two sample groups using a specified
statistical test and fold change method. Input groups can be defined using either
legacy-style (class_type + values) or dictionary-style filters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
values |
list of dict or list of list
|
Sample group filters to compare.
|
None
|
class_type |
str or list of str
|
Legacy-style class label(s) to interpret |
None
|
method |
str
|
Statistical test to use. Options: "ttest", "mannwhitneyu", "wilcoxon". |
'ttest'
|
layer |
str
|
Name of the data layer to use (default is "X"). |
'X'
|
pval |
float
|
P-value cutoff used for labeling significance. |
0.05
|
log2fc |
float
|
Minimum log2 fold change threshold for significance labeling. |
1.0
|
fold_change_mode |
str
|
Strategy for computing fold change. Options:
|
'mean'
|
Returns:
| Type | Description |
|---|---|
|
pd.DataFrame: DataFrame with DE statistics including log2 fold change, p-values, and significance labels. |
Example
Legacy-style DE comparison using class types and value combinations:
Dictionary-style (recommended) DE comparison:
Source code in src/scpviz/pAnnData/analysis.py
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 | |
harmony
Perform batch correction using Harmony integration.
This method applies Harmony-based batch correction (via scanpy.external.pp.harmony_integrate)
on PCA-reduced protein or peptide data to mitigate batch effects across samples.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key |
str
|
Column name in |
required |
on |
str
|
Whether to use "protein" or "peptide" data. Accepts "prot"/"protein" or "pep"/"peptide" (default: "protein"). |
'protein'
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Perform Harmony integration on protein-level PCA embeddings:
Apply Harmony on peptide-level data instead:
Note
- Harmony requires prior PCA computation. If PCA is missing, it will be computed automatically.
- The Harmony-corrected coordinates are stored in
.obsm["X_pca_harmony"]. - Updates the processing history via
.history.
Todo
Add optional arguments for controlling Harmony parameters (e.g., max_iter_harmony, theta, lambda).
Source code in src/scpviz/pAnnData/analysis.py
impute
impute(classes=None, layer='X', method='mean', on='protein', min_scale=1, set_X=True, use_zeros_as_nan=False, **kwargs)
Impute missing values across samples globally or within groups.
This method imputes missing values in the specified data layer using one of several strategies. It supports both global (across all samples) and group-wise imputation based on sample classes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
classes |
str or list of str
|
Sample-level class/grouping column(s). If None, imputation is global. |
None
|
layer |
str
|
Data layer to impute from (default is "X"). |
'X'
|
method |
str
|
Imputation strategy to use. Options include:
|
'mean'
|
on |
str
|
Whether to impute "protein" or "peptide" data. |
'protein'
|
min_scale |
float
|
Scaled multiplication of minimum value for imputation, i.e. 0.2 would be 20% of minimum value (default is 1). |
1
|
set_X |
bool
|
If True, updates |
True
|
use_zeros_as_nan |
If True, treat 0 values as NaN before imputing. Mostly used after |
False
|
|
**kwargs |
Additional arguments passed to the imputer (e.g., |
{}
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Globally impute missing values using the median strategy:
Group-wise imputation based on treatment:
Note
- KNN imputation is only supported for global (non-grouped) mode.
- If
directlfqwas used for normalization, setuse_zeros_as_nanflag toTrue. Else, no imputation will be performed asdirectlfqonly returns 0s. - Features that are entirely missing within a group or across all samples are skipped and preserved as NaN.
- Imputed results are stored in a new layer named
"X_impute_<method>". - Imputation summaries are printed to the console by group or overall.
- PIMMS, which stands for Proteomics Imputation Modeling Mass Spectrometry, for more information see: the package or the manuscript.
Source code in src/scpviz/pAnnData/analysis.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 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 | |
leiden
Perform Leiden clustering on protein or peptide data.
This method runs community detection using the Leiden algorithm based on a precomputed
neighbor graph using scanpy.tl.leiden(). If neighbors are not already computed, they will be generated automatically.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on |
str
|
Whether to use "protein" or "peptide" data. |
'protein'
|
layer |
str
|
Data layer to use for clustering (default is "X"). |
'X'
|
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Perform Leiden clustering using the default PCA-based neighbors:
Note
- Cluster labels are stored in
.obs["leiden"]. - Neighbor graphs are automatically computed if not present in
.uns["neighbors"]. - Automatically sets
.Xto the specified layer if it is not already active.
Source code in src/scpviz/pAnnData/analysis.py
nanmissingvalues
Set columns (proteins or peptides) with excessive missing values to NaN.
This method scans all features and replaces their corresponding columns with NaN if the fraction of missing values exceeds the given threshold. It helps ensure downstream normalization and imputation steps are applied to meaningful features only.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on |
str
|
Whether to use "protein" or "peptide" data. Accepts "prot"/"protein" or "pep"/"peptide" (default: "protein"). |
'protein'
|
limit |
float
|
Proportion threshold for missing values (default: 0.5).
Features with more than |
0.5
|
Returns:
| Type | Description |
|---|---|
|
None |
Deprecation Notice
This function may be deprecated in future releases.
Use annotate_found
and filter_prot_found
for more robust and configurable detection-based filtering.
Example
Mask proteins with more than 50% missing values:
Apply the same filter for peptide-level data:
Note
- The missing-value fraction is computed per feature across all samples.
- This operation modifies the
.Xmatrix in-place. - The updated data are stored back into
.protor.pep.
Source code in src/scpviz/pAnnData/analysis.py
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 | |
neighbor
Compute a neighbor graph based on protein or peptide data.
This method builds a nearest-neighbors graph for downstream analysis using
scanpy.pp.neighbors. It optionally performs PCA before constructing the graph
if a valid representation is not already available.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on |
str
|
Whether to use "protein" or "peptide" data. |
'protein'
|
layer |
str
|
Data layer to use (default is "X"). |
'X'
|
use_rep |
str
|
Key in |
'X_pca'
|
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Compute neighbors using default PCA representation:
Use a custom representation stored in .obsm["X_umap"]:
Note
- The neighbor graph is stored in
.obs["distances"]and.obs["connectivities"]. - Neighbor metadata is stored in
.uns["neighbors"]. - Automatically calls
self.set_X()if a non-default layer is specified. - PCA is computed automatically if
use_rep='X_pca', else neighbor will use the rep provided by the user.
Todo
Allow users to supply a custom KNeighborsTransformer or precomputed neighbor graph.
Source code in src/scpviz/pAnnData/analysis.py
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 | |
normalize
normalize(classes=None, layer='X', method='sum', on='protein', set_X=True, force=False, use_nonmissing=False, **kwargs)
Normalize sample intensities across protein or peptide data.
This method performs global or group-wise normalization of the selected data layer.
It supports multiple normalization strategies ranging from simple scaling
(e.g., sum, median) to advanced approaches such as reference_feature and
directlfq.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
classes |
str or list
|
Sample-level grouping column(s) in |
None
|
layer |
str
|
Data layer to normalize from (default: |
'X'
|
method |
str
|
Normalization strategy to apply. Options include:
|
'sum'
|
on |
str
|
Whether to use |
'protein'
|
set_X |
bool
|
Whether to set |
True
|
force |
bool
|
Proceed with normalization even if samples exceed the allowed fraction of missing values (default: False). |
False
|
use_nonmissing |
bool
|
If True, only use columns with no missing values across all samples when computing scaling factors (default: False). |
False
|
**kwargs |
Additional keyword arguments for normalization methods.
- |
{}
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Perform global normalization using the median intensity:
Apply group-wise normalization by treatment class using sum-scaling:
Run reference-feature normalization using specific genes:
About directlfq normalization
- The
directlfqmethod aggregates peptide-level data to protein-level intensities and stores results in a new protein-layer (e.g.'X_norm_directlfq'). - It does not support group-wise normalization.
- Processing time may scale with dataset size.
- For algorithmic and benchmarking details, see:
Ammar, Constantin et al. (2023)
Accurate Label-Free Quantification by directLFQ to Compare Unlimited Numbers of Proteomes.
Molecular & Cellular Proteomics, 22(7):100581.
https://doi.org/10.1016/j.mcpro.2023.100581
Note
- Results are stored in a new layer named
'X_norm_<method>'. - The normalized layer replaces
.Xifset_X=True. - Normalization operations are recorded in
.history. - For consistency across runs, consider running
.impute()before normalization.
Todo
- Add optional z-score and percentile normalization modes.
- Add support for specifying external scaling factors.
Source code in src/scpviz/pAnnData/analysis.py
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 | |
pca
Perform PCA (Principal Component Analysis) on protein or peptide data.
This method performs PCA on the selected data layer, after z-score normalization and removal of
NaN-containing features. The results are stored in .obsm["X_pca"] and .uns["pca"].
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on |
str
|
Whether to use "protein" or "peptide" data. |
'protein'
|
layer |
str
|
Data layer to use for PCA (default is "X"). |
'X'
|
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Type | Description |
|---|---|
|
None |
Note
- Features (columns) with NaN values are excluded before PCA and then padded with zeros.
- PCA scores are stored in
.obsm['X_pca']. - Principal component loadings, variance ratios, and total variances are stored in
.uns['pca']. - If you store PCs under a custom key using
key_added, remember to setuse_repwhen calling.neighbor()or.umap().
Source code in src/scpviz/pAnnData/analysis.py
rank
Rank proteins or peptides by average abundance across sample groups.
This method computes the average and standard deviation for each feature within
each group and assigns a rank (highest to lowest) based on the group-level mean.
The results are stored in .var with one set of columns per group.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
classes |
str or list of str
|
Sample-level class/grouping column(s) in |
None
|
on |
str
|
Whether to compute ranks on "protein" or "peptide" data. |
'protein'
|
layer |
str
|
Name of the data layer to use (default is "X"). |
'X'
|
Returns:
| Type | Description |
|---|---|
|
None |
Example
Rank proteins by average abundance across treatment groups:
Source code in src/scpviz/pAnnData/analysis.py
umap
Compute UMAP dimensionality reduction on protein or peptide data.
This method runs UMAP (Uniform Manifold Approximation and Projection) on the selected data layer using scanpy.tl.umap().
If neighbor graphs are not already computed, they will be generated automatically.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
on |
str
|
Whether to use "protein" or "peptide" data. |
'protein'
|
layer |
str
|
Data layer to use for UMAP (default is "X"). |
'X'
|
force_neighbors |
bool
|
If True, recompute neighbors even if they exist. |
False
|
**kwargs |
Additional keyword arguments passed to |
{}
|
Returns:
| Type | Description |
|---|---|
|
None |
Note:
- UMAP coordinates are stored in .obsm["X_umap"].
- UMAP settings are stored in .uns["umap"].
- Automatically computes neighbor graphs if not already available.
- Will call .set_X() if a non-default layer is used.
Source code in src/scpviz/pAnnData/analysis.py
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 | |