Differential expression¶
find_markers implements all eight of Seurat's tests: wilcox (tie-corrected),
t, bimod, LR, negbinom, roc, mast and deseq2. Seven of them are
per-cell and reproduce Seurat's top 50 genes exactly on PBMC 3k; deseq2 is
pseudobulk and deliberately does not, because it is answering a different
question — see the DE vignette.
Two numbers to know before reading a result table:
avg_log2FCcarries Seurat's pseudocount on the group sum, not the group mean. Getting that backwards shifts every fold change and also changes which genes clearlogfc_threshold, so it silently changes the returned gene set, not just a column.pct.1andpct.2are rounded to three decimals, by Seurat, insideFindMarkers. Anything comparing two runs gene-by-gene should not expect them closer than 5e-4.
Per-cluster and per-pair tests¶
find_markers
¶
find_markers(seurat, ident_1: Union[str, list[str]], ident_2: Optional[Union[str, list[str]]] = None, assay: Optional[str] = None, layer: Optional[str] = None, test_use: str = 'wilcox', only_pos: bool = False, min_pct: float = 0.1, logfc_threshold: float = 0.25, features: Optional[list[str]] = None, latent_vars: Optional[list[str]] = None, sample_col: Optional[str] = None, max_cells_per_ident: Optional[int] = None, random_seed: int = 1) -> DataFrame
Find differentially expressed marker genes.
Mirrors R's FindMarkers(pbmc, ident.1 = 2).
Parameters:
-
ident_1(Union[str, list[str]]) –cluster label(s) for group 1
-
ident_2(Optional[Union[str, list[str]]], default:None) –cluster label(s) for group 2 (None = all others)
-
test_use(str, default:'wilcox') –statistical test — 'wilcox' (default), 't', 'bimod' (McDavid 2013 bimodal LRT), 'LR' (logistic-regression LRT), 'negbinom' (negative-binomial GLM LRT on counts), 'mast' (MAST two-part hurdle LRT on log-normalized data), 'deseq2' (pseudobulk DESeq2 — sums counts per sample then tests sample-level, requires
sample_col; needspip install truecell[deseq2]), or 'roc' (AUC classifier power). -
only_pos(bool, default:False) –only return positive markers
-
min_pct(float, default:0.1) –minimum fraction cells expressing gene in either group
-
logfc_threshold(float, default:0.25) –minimum log2 fold-change filter
-
features(Optional[list[str]], default:None) –restrict to these genes (default: all)
-
latent_vars(Optional[list[str]], default:None) –metadata columns to regress out as covariates in the 'LR', 'negbinom', and 'mast' models (Seurat's latent.vars). Note that Seurat's
MASTDETestfits~ conditionalone — it adds no cellular detection rate term unless you pass one — so leaving this empty is what matches Seurat's default. Passing CDR is the MAST paper's advice, and a deliberate departure from Seurat. -
sample_col(Optional[str], default:None) –metadata column identifying pseudobulk replicates (donor / sample); required for
test_use='deseq2', ignored otherwise. -
max_cells_per_ident(Optional[int], default:None) –downsample each group to this many cells
Returns:
-
For 'wilcox' / 't' / 'LR' / 'negbinom': DataFrame with columns– -
p_val, avg_log2FC, pct.1, pct.2, p_val_adj (sorted by p_val).– -
For 'roc': columns myAUC, avg_diff, power, avg_log2FC, pct.1, pct.2– -
(sorted by power), with no p-value — matching Seurat.–
Source code in truecell/markers.py
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 | |
find_all_markers
¶
find_all_markers(seurat, assay: Optional[str] = None, layer: Optional[str] = None, test_use: str = 'wilcox', only_pos: bool = False, min_pct: float = 0.1, logfc_threshold: float = 0.25, sample_col: Optional[str] = None, max_cells_per_ident: Optional[int] = None, random_seed: int = 1, return_thresh: float = 0.01) -> DataFrame
Find marker genes for each cluster vs all others.
Mirrors R's FindAllMarkers(pbmc, only.pos = TRUE).
Returns a single DataFrame with an extra 'cluster' column.
return_thresh is Seurat's return.thresh: only genes with
p_val < return_thresh are returned (for test_use="roc", only genes
whose myAUC is further than return_thresh from 0.5 in either
direction, since ROC reports no p-value). Pass None for the unfiltered
table. Without it truecell returned every gene that survived the pct and
logfc pre-filters, including plainly non-significant ones: on PBMC 3k that
was 3,036 rows against Seurat's 3,446 spread over one fewer cluster, and on
the two clusters whose membership matched Seurat exactly the filtered table
reproduces Seurat's gene set exactly (151 and 242 genes).
Rows are ordered by p_val ascending and then avg_log2FC descending
within each cluster, matching Seurat's order(gde$p_val, -gde[, 2]).
The tie-break matters: Wilcoxon p-values tie at 0 for the strongest
markers, so without it "the top 10 markers" depends on incoming row order.
Source code in truecell/markers.py
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 | |
find_conserved_markers
¶
find_conserved_markers(seurat, ident_1: Union[str, list[str]], grouping_var: str, ident_2: Optional[Union[str, list[str]]] = None, assay: Optional[str] = None, layer: Optional[str] = None, test_use: str = 'wilcox', only_pos: bool = False, min_pct: float = 0.1, logfc_threshold: float = 0.25, features: Optional[list[str]] = None) -> DataFrame
Find markers conserved across the levels of a grouping variable.
Mirrors R's FindConservedMarkers(obj, ident.1, grouping.var = "stim"):
runs find_markers for ident_1 vs ident_2 independently within
each level of grouping_var, keeps only genes detected as markers in
every level, and combines their per-level p-values with Fisher's method
(scipy.stats.combine_pvalues).
Every argument not listed below is forwarded verbatim to
find_markers.
Parameters:
-
ident_1(Union[str, list[str]]) –cluster label(s) for group 1.
-
grouping_var(str) –metadata column whose levels define the independent comparisons (e.g. condition, batch, donor).
-
ident_2(Optional[Union[str, list[str]]], default:None) –cluster label(s) for group 2 (None = all other cells).
Returns:
-
DataFrame indexed by gene with, for each level ``g``, the columns– -
``{g}_p_val, {g}_avg_log2FC, {g}_pct.1, {g}_pct.2, {g}_p_val_adj`` plus– -
``max_pval`` (worst per-level p-value) and ``combined_p_val`` (Fisher-combined– -
across levels), sorted by ``combined_p_val``. Only genes that are markers in– -
all levels are returned.–
Source code in truecell/markers.py
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 | |
Group summaries¶
AggregateExpression sums raw counts and is what pseudobulk differential
expression wants. AverageExpression means the back-transformed values and
is what a per-group expression summary wants. They are different functions, not
two scalings of one — see each docstring.
aggregate_expression
¶
aggregate_expression(seurat, group_by: Union[str, list[str]] = 'ident', assays: Optional[Union[str, list[str]]] = None, features: Optional[list[str]] = None, layer: str = 'counts', return_object: bool = False, normalization_method: str = 'LogNormalize', scale_factor: float = 10000.0)
Sum counts within cell groups to form a pseudobulk profile.
Mirrors R's AggregateExpression(obj, group.by = c("celltype", "donor")).
Parameters:
-
group_by(Union[str, list[str]], default:'ident') –metadata column(s) defining the groups. Multiple columns are combined into a single label joined by
"_"(as Seurat does)."ident"uses the object's active identities. -
assays(Optional[Union[str, list[str]]], default:None) –assay name(s) to aggregate (default: the active assay).
-
features(Optional[list[str]], default:None) –restrict to these features (default: all).
-
layer(str, default:'counts') –layer to aggregate (default
"counts"— pseudobulk is defined on raw counts). Seurat'sAggregateExpressionhas no such argument and always sumscounts; this is a superset with a matching default. -
return_object(bool, default:False) –if True, return a new
Truecellobject with one "cell" per group; if False (default), return apd.DataFrame(features × groups), or adictof them when several assays are requested. -
normalization_method(str, default:'LogNormalize') –how to fill the returned object's
datalayer whenreturn_object=True."LogNormalize"(Seurat's default) orNoneto leavedataas the raw sums. -
scale_factor(float, default:10000.0) –the scale factor for that normalization (Seurat: 10000).
Notes
return_object=True normalizes, which is easy to miss and was wrong
here until it was checked against R: Seurat's return.seurat = TRUE runs
NormalizeData over the pseudobulk, so data holds
log1p(sums / colSums × 10000) and not the sums. Leaving the sums in
data — which is what this did — hands every downstream function that
reads that layer un-normalized library-size-confounded values.
This is the one place AggregateExpression and AverageExpression
diverge on their object output: average_expression writes plain
log1p of the averages, with no library-size step. Verified against
Seurat 5.5.1 for both.
Returns:
-
``pd.DataFrame`` | ``dict[str, pd.DataFrame]`` | ``Truecell``–A single DataFrame when one assay is aggregated, a dict keyed by assay name when several are, or a Truecell object when
return_object=True.
Source code in truecell/aggregate.py
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 | |
average_expression
¶
average_expression(seurat, group_by: Union[str, list[str]] = 'ident', assays: Optional[Union[str, list[str]]] = None, features: Optional[list[str]] = None, layer: str = 'data', return_object: bool = False)
Mean expression within cell groups.
Mirrors R's AverageExpression(obj, group.by = "celltype"), which is a
different function from aggregate_expression and not a rescaling of
it. Two things differ, and both matter.
It averages rather than sums, and on the data layer it averages the
back-transformed values: mean(expm1(x)), not mean(x) and not
expm1(mean(x)). The data layer holds log1p-normalized expression, so
a mean taken on it is a geometric-ish mean of nothing in particular; Seurat
undoes the log first, averages on the linear scale, and returns that. The
difference is not cosmetic — on a small Poisson object the first gene reads
332.84 under AverageExpression against a count mean of 3.17.
The back-transform applies to the data layer only. counts and
scale.data are not log-normalized, so those are averaged as they stand.
Verified against Seurat 5.5.1 for all three layers.
Parameters:
-
group_by(Union[str, list[str]], default:'ident') –metadata column(s) defining the groups;
"ident"uses the object's active identities. Several are joined by"_". -
assays(Optional[Union[str, list[str]]], default:None) –assay name(s) to average (default: the active assay).
-
features(Optional[list[str]], default:None) –restrict to these features (default: all).
-
layer(str, default:'data') –layer to average (default
"data", as Seurat's is). -
return_object(bool, default:False) –if True, return a
Truecellwith one "cell" per group. Seurat puts the averaged matrix in that object'scountslayer andlog1pof it indata; this does the same.
Returns:
-
``pd.DataFrame`` | ``dict[str, pd.DataFrame]`` | ``Truecell``–
See Also
aggregate_expression : sums raw counts, which is what pseudobulk DE wants.
Source code in truecell/aggregate.py
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 | |