Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pdex"
version = "0.1.13"
version = "0.1.14"
description = "Parallel differential expression for single-cell perturbation sequencing"
readme = "README.md"
authors = [{ name = "noam teyssier", email = "noam.teyssier@arcinstitute.org" }]
Expand All @@ -25,7 +25,6 @@ build-backend = "hatchling.build"
[dependency-groups]
dev = ["pytest>=8.3.5", "ruff>=0.11.8"]


[tool.pyright]
venvPath = "."
venv = ".venv"
6 changes: 3 additions & 3 deletions src/pdex/_single_cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def _process_target_batch_shm(
metric: str,
tie_correct: bool = False,
is_log1p: bool = False,
exp_post_agg: bool = False,
exp_post_agg: bool = True,
**kwargs,
) -> list[dict[str, float]]:
"""Process a batch of target gene and feature combinations.
Expand Down Expand Up @@ -240,7 +240,7 @@ def parallel_differential_expression(
metric: str = "wilcoxon",
tie_correct: bool = True,
is_log1p: bool | None = None,
exp_post_agg: bool = False,
exp_post_agg: bool = True,
as_polars: bool = False,
**kwargs,
) -> pd.DataFrame | pl.DataFrame:
Expand Down Expand Up @@ -269,7 +269,7 @@ def parallel_differential_expression(
(see `pdex._utils.guess_is_log`).
exp_post_agg: bool
Whether to perform exponential post-aggregation for calculating fold change
(default: perform exponential pre-aggregation)
(default: perform exponential post-aggregation)
as_polars: bool
return the output dataframe as a polars dataframe
**kwargs:
Expand Down